Skip to content

Update ffi to 1.17.3 for Ruby 4.0 support #860

Update ffi to 1.17.3 for Ruby 4.0 support

Update ffi to 1.17.3 for Ruby 4.0 support #860

Workflow file for this run

name: Run tests
on:
push:
pull_request:
schedule:
- cron: '4 1 * * SUN'
permissions: {}
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
version:
[
3.2,
3.3,
3.4,
'4.0',
jruby,
]
exclude:
- os: windows-latest
version: jruby
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: true
persist-credentials: false
# zizmor complains that 'v1' is a ref that can be provided by both the branch and tag namespaces.
# specify that we want the v1 branch.
- uses: ruby/setup-ruby@90be1154f987f4dc0fe0dd0feedac9e473aa4ba8 # 1.286.0
with:
ruby-version: ${{ matrix.version }}
- run: bundle install
env:
BUNDLE_FROZEN: true
- run: bundle exec rake -t spec