Skip to content

Updated list from source (#295) #200

Updated list from source (#295)

Updated list from source (#295) #200

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
matrix:
ruby-version:
- "3.0"
- "3.1"
- "3.2"
- "3.3"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- 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