You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
392 B
23 lines
392 B
2 years ago
|
name: Bindings Tests (Go)
|
||
2 years ago
|
on:
|
||
|
push:
|
||
|
paths:
|
||
|
- bindings/go/**
|
||
2 years ago
|
- whisper.h
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- bindings/go/**
|
||
|
- whisper.h
|
||
2 years ago
|
|
||
|
jobs:
|
||
2 years ago
|
ubuntu-latest:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
2 years ago
|
- uses: actions/setup-go@v3
|
||
|
with:
|
||
|
go-version: '^1.19'
|
||
|
- uses: actions/checkout@v1
|
||
|
- run: |
|
||
|
cd bindings/go
|
||
|
make test
|