Skip to content

5.0.0 changelog

5.0.0 changelog #49

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [master, main]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ "3.0.3", "3.1.1" ]
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 # runs 'bundle install' and caches installed gems automatically
- name: Lint ${{ matrix.ruby-version }}
run: bundle exec rubocop
- name: Test ${{ matrix.ruby-version }}
run: bundle exec rspec