Skip to content

chore: remove legacy SAY11_VOICE_ID #13

chore: remove legacy SAY11_VOICE_ID

chore: remove legacy SAY11_VOICE_ID #13

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ main, master ]
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
check-latest: true
- name: Install system dependencies (audio)
run: sudo apt-get update && sudo apt-get install -y libasound2-dev
- name: Cache Go modules
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-
- name: Install dependencies
run: go mod download
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60.1
args: --timeout=3m
- name: Test
run: go test ./...