2024-10-16 15:44:04 +00:00
|
|
|
name: Bindings Tests (Ruby)
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- bindings/ruby/**
|
2024-11-21 15:04:29 +00:00
|
|
|
- src/**/*.c
|
|
|
|
- src/**/*.cpp
|
|
|
|
- src/**/*.h
|
|
|
|
- src/**/*.m
|
|
|
|
- src/**/*.metal
|
|
|
|
- include/**/*.c
|
|
|
|
- include/**/*.cpp
|
|
|
|
- include/**/*.h
|
|
|
|
- include/**/*.m
|
|
|
|
- include/**/*.metal
|
|
|
|
- ggml/**/*.c
|
|
|
|
- ggml/**/*.cpp
|
|
|
|
- ggml/**/*.h
|
|
|
|
- ggml/**/*.m
|
|
|
|
- ggml/**/*.metal
|
2024-10-28 13:43:27 +00:00
|
|
|
- scripts/get-flags.mk
|
2024-10-16 15:44:04 +00:00
|
|
|
- examples/dr_wav.h
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- bindings/ruby/**
|
2024-11-21 15:04:29 +00:00
|
|
|
- src/**/*.c
|
|
|
|
- src/**/*.cpp
|
|
|
|
- src/**/*.h
|
|
|
|
- src/**/*.m
|
|
|
|
- src/**/*.metal
|
|
|
|
- include/**/*.c
|
|
|
|
- include/**/*.cpp
|
|
|
|
- include/**/*.h
|
|
|
|
- include/**/*.m
|
|
|
|
- include/**/*.metal
|
|
|
|
- ggml/**/*.c
|
|
|
|
- ggml/**/*.cpp
|
|
|
|
- ggml/**/*.h
|
|
|
|
- ggml/**/*.m
|
|
|
|
- ggml/**/*.metal
|
2024-10-28 13:43:27 +00:00
|
|
|
- scripts/get-flags.mk
|
2024-10-16 15:44:04 +00:00
|
|
|
- examples/dr_wav.h
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
ubuntu-latest:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: bindings/ruby
|
|
|
|
steps:
|
|
|
|
- uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
2024-11-28 08:33:07 +00:00
|
|
|
ruby-version: '3.1'
|
2024-10-16 15:44:04 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- run: rake test
|