mirror of
https://github.com/taigrr/elevenlabs-mcp.git
synced 2026-04-02 03:08:57 -07:00
19 lines
431 B
YAML
19 lines
431 B
YAML
name: Test
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: go.mod
|
|
- name: Install ALSA dev headers
|
|
run: sudo apt-get update && sudo apt-get install -y libasound2-dev
|
|
- run: go test -race ./...
|
|
- run: go vet ./...
|
|
- run: go build ./...
|