Skip to content

chore(deps): bump actions/checkout from 4.0.0 to 4.1.0 #103

chore(deps): bump actions/checkout from 4.0.0 to 4.1.0

chore(deps): bump actions/checkout from 4.0.0 to 4.1.0 #103

Workflow file for this run

name: Test
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7', '3.0', '3.1', '3.2']
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # (latest, untagged)
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@5311f05890856149502132d25c4a24985a00d426
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Installing dependencies
run: bundle check --path=vendor/bundle || bundle install --path=vendor/bundle
- name: Run tests
run: bundle exec rake
- name: Benchmarks
run: bundle exec rake benchmarks