2023-02-15 18:46:55 +01:00
|
|
|
name: Bindings Tests (Ruby)
|
2023-01-07 20:21:43 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
2023-02-15 18:46:55 +01:00
|
|
|
- bindings/ruby/**
|
2023-01-25 17:50:50 +01:00
|
|
|
- whisper.h
|
|
|
|
pull_request:
|
|
|
|
paths:
|
2023-02-15 18:46:55 +01:00
|
|
|
- bindings/ruby/**
|
2023-01-25 17:50:50 +01:00
|
|
|
- whisper.h
|
2023-01-07 20:21:43 +01:00
|
|
|
|
|
|
|
jobs:
|
2023-01-25 17:50:50 +01:00
|
|
|
ubuntu-latest:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-02-15 18:46:55 +01:00
|
|
|
- uses: ruby/setup-ruby@v1
|
2023-01-07 20:21:43 +01:00
|
|
|
with:
|
2023-02-15 18:46:55 +01:00
|
|
|
ruby-version: '3.0'
|
2023-01-07 20:21:43 +01:00
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- run: |
|
2023-02-15 18:46:55 +01:00
|
|
|
cd bindings/ruby/ext
|
|
|
|
ruby extconf.rb && make
|