Skip to content

Support Rack 3

Support Rack 3 #60

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby_version }} with ${{ matrix.gemfile }}
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
strategy:
matrix:
ruby_version:
- "2.7"
- "3.0"
- "3.1"
- "head"
gemfile:
- "faraday-0"
- "faraday-1"
- "faraday-2"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- name: Run Tests
run: bundle exec rake test