Skip to content

Release 1.3.0

Release 1.3.0 #37

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Ruby ${{ matrix.ruby }} & Rack ${{ matrix.rack }}
runs-on: 'ubuntu-latest'
strategy:
matrix:
ruby:
- '3.2'
- '3.1'
- '3.0'
- '2.7'
- '2.6'
rack:
- '1.6'
- '2.0'
- '2.1'
- '2.2'
- '3.0'
fail-fast: false
env:
BUNDLE_GEMFILE: "gemfiles/rack_${{ matrix.rack }}.gemfile"
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # 'bundle install' and cache
- run: bundle exec rake