allow custom voice and speech models (#691) #1414
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sanity check | |
on: | |
- push | |
- pull_request | |
jobs: | |
prcheck: | |
name: Sanity check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.21' | |
- name: Run vet | |
run: | | |
go vet . | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v4 | |
with: | |
version: latest | |
- name: Run tests | |
run: go test -race -covermode=atomic -coverprofile=coverage.out -v . | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 |