Skip to content

fix: change release github action to use different actions #85

fix: change release github action to use different actions

fix: change release github action to use different actions #85

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@3df4ab11eba7bda6032a0b82a6bb43b11571feac # (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