Skip to content

fix: Add New lint and publish workflows #91

fix: Add New lint and publish workflows

fix: Add New lint and publish workflows #91

Workflow file for this run

---
name: Unit
'on':
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7', '3.0', '3.1']
name: Unit test on Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake test