Skip to content

Fix test

Fix test #2

Workflow file for this run

name: test
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ${{ matrix.os }}-latest
name: ${{ matrix.os }} ruby ${{ matrix.ruby }}
strategy:
matrix:
os: [ubuntu, macos]
ruby: [3.3]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Build d4binding
run: bundle exec rake d4:build
- name: Run test
run: bundle exec rake test