mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-11-07 16:44:13 +01:00
24 lines
466 B
Plaintext
24 lines
466 B
Plaintext
# TODO: fix this workflow file, disabled for now
|
|
name: Bindings Tests (Ruby)
|
|
on:
|
|
push:
|
|
paths:
|
|
- bindings/ruby/**
|
|
- whisper.h
|
|
pull_request:
|
|
paths:
|
|
- bindings/ruby/**
|
|
- whisper.h
|
|
|
|
jobs:
|
|
ubuntu-latest:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: '3.0'
|
|
- uses: actions/checkout@v1
|
|
- run: |
|
|
cd bindings/ruby/ext
|
|
ruby extconf.rb && make
|