Skip to content

feat(audio): provider-neutral speech-to-text seam #300

feat(audio): provider-neutral speech-to-text seam

feat(audio): provider-neutral speech-to-text seam #300

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.5.0
test:
name: Vet & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Download modules
run: go mod download
- name: go vet
run: go vet ./...
- name: Build
run: go build ./...
- name: Test (race detector)
run: go test -race -timeout 3m ./...