Skip to content

Bump rack from 2.2.8 to 2.2.8.1 (#11) #31

Bump rack from 2.2.8 to 2.2.8.1 (#11)

Bump rack from 2.2.8 to 2.2.8.1 (#11) #31

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.0', '3.2']
gemfile:
- gemfiles/rails_6_1.gemfile
- gemfiles/rails_7_0.gemfile
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests and linter
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
run: bundle exec rake