mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-01-02 02:36:42 +00:00
23 lines
387 B
YAML
23 lines
387 B
YAML
name: Bindings Tests
|
|
on:
|
|
push:
|
|
paths:
|
|
- bindings/go/**
|
|
- whisper.h
|
|
pull_request:
|
|
paths:
|
|
- bindings/go/**
|
|
- whisper.h
|
|
|
|
jobs:
|
|
ubuntu-latest:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '^1.19'
|
|
- uses: actions/checkout@v1
|
|
- run: |
|
|
cd bindings/go
|
|
make test
|