Skip to content

Bump rb-sys from 0.9.106 to 0.9.110 in the cargo group #177

Bump rb-sys from 0.9.106 to 0.9.110 in the cargo group

Bump rb-sys from 0.9.106 to 0.9.110 in the cargo group #177

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ["ruby-head", "3.4", "3.3", "3.2"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
tmp
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake build
- run: bundle exec rake spec
lint:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4
bundler-cache: true
- run: bundle exec rake standard