Skip to content

Prepare 1.0.7 and commit 1.0.6 checksum #51

Prepare 1.0.7 and commit 1.0.6 checksum

Prepare 1.0.7 and commit 1.0.6 checksum #51

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: ['**']
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [ '2.7', '3.0', '3.1' ]
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Run tests
run: bundle exec rake