Skip to content

#437

#437 #482

Workflow file for this run

name: test
on:
- push
env:
CI: 'true'
jobs:
test:
runs-on: ubuntu-latest
container: ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- ruby:2.7
- ruby:3.0
- ruby:3.1
- ruby:3.2
steps:
- uses: actions/checkout@v3
- name: bundle install
run: |
gem install bundler -v '~>2.0'
bundle install --jobs 4 --retry 3
bundle exec rake bundle:update
bundle exec rake bundle:check
- name: cert check
run: |
bundle exec rake cert:update
bundle exec rake cert:check
- name: Run lint
run: |
bundle exec rubocop