Skip to content

Update Ruby & dependencies, drop support for Ruby 2.x #5

Update Ruby & dependencies, drop support for Ruby 2.x

Update Ruby & dependencies, drop support for Ruby 2.x #5

Workflow file for this run

name: Ruby
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [3.0, 3.1, 3.2]
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: 1
- name: Install dependencies
run: bundle install
- name: Rubocop
run: rubocop
- name: Run Tests
run: bundle exec rake