Skip to content

Merge pull request #1 from ursm/dependabot/github_actions/actions/che… #6

Merge pull request #1 from ursm/dependabot/github_actions/actions/che…

Merge pull request #1 from ursm/dependabot/github_actions/actions/che… #6

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['3.3', '3.4']
rails: ['7.1', '7.2', '8.0']
env:
RAILS_VERSION: ${{ matrix.rails }}
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec ruby test/minitest/default_http_header_test.rb