2023-02-15 18:46:55 +01:00
|
|
|
name: Bindings Tests (Go)
|
2023-01-07 20:21:43 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- bindings/go/**
|
2023-01-25 17:50:50 +01:00
|
|
|
- whisper.h
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- bindings/go/**
|
|
|
|
- whisper.h
|
2023-01-07 20:21:43 +01:00
|
|
|
|
|
|
|
jobs:
|
2023-01-25 17:50:50 +01:00
|
|
|
ubuntu-latest:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-01-07 20:21:43 +01:00
|
|
|
- uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: '^1.19'
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- run: |
|
|
|
|
cd bindings/go
|
|
|
|
make test
|