Skip to content

Merge pull request #22 from pepabo/fix-broken-tests #3

Merge pull request #22 from pepabo/fix-broken-tests

Merge pull request #22 from pepabo/fix-broken-tests #3

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: ["3.1", "3.2", "3.3", "head"]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake