Skip to content

Updated list from source (#238) #111

Updated list from source (#238)

Updated list from source (#238) #111

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
matrix:
ruby-version:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Rubocop
run: bundle exec rake rubocop
- name: Run tests
run: bundle exec rake test