Skip to content

Add support for ruby-jwt v2.6.0 and above, bump development deps, new Ruby vers #45

Add support for ruby-jwt v2.6.0 and above, bump development deps, new Ruby vers

Add support for ruby-jwt v2.6.0 and above, bump development deps, new Ruby vers #45

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.7", "3.1.6", "3.2.6", "3.3.7", "3.4.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