mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-01-02 10:46:41 +00:00
f078a6f20e
* Updated bindings so they can be used in third pary packages. * Updated makefiles to set FMA flag on optionally, for xeon E5 on Darwin * Added test script * Changes for examples * Reverted * Made the NewContext method private
18 lines
307 B
YAML
18 lines
307 B
YAML
name: Bindings Tests
|
|
on:
|
|
push:
|
|
paths:
|
|
- bindings/go/**
|
|
|
|
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
|