mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-11-07 16:44:13 +01:00
b623ca43b1
* adding ruby bindings * avoid adding these they are copied in via extconf.rb * ignore these files here * add definitions for boolean params * initial transcribe for ruby * use en model and transcribe jfk with assertion * possibly this works for building ruby binding * ci : try to add ruby workflow --------- Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
23 lines
392 B
YAML
23 lines
392 B
YAML
name: Bindings Tests (Go)
|
|
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
|