Skip to content

Merge pull request #69 from G-Rath/handle-invalid-urls #35

Merge pull request #69 from G-Rath/handle-invalid-urls

Merge pull request #69 from G-Rath/handle-invalid-urls #35

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