Summary
Jobs
test (ubuntu-latest, 2.6, activesupport-4)
test (ubuntu-latest, 2.6, activesupport-5)
test (ubuntu-latest, 2.6, minitest-4)
test (ubuntu-latest, 2.6, minitest-5)
test (ubuntu-latest, 2.6, plain-ruby)
test (ubuntu-latest, 2.6, rspec-1)
test (ubuntu-latest, 2.6, rspec-2)
test (ubuntu-latest, 2.6, rspec-3)
test (ubuntu-latest, 2.6, test-unit-2)
test (ubuntu-latest, 2.6, test-unit-3)
test (ubuntu-latest, 2.7, activesupport-4)
test (ubuntu-latest, 2.7, activesupport-5)
test (ubuntu-latest, 2.7, minitest-4)
test (ubuntu-latest, 2.7, minitest-5)
test (ubuntu-latest, 2.7, plain-ruby)
test (ubuntu-latest, 2.7, rspec-1)
test (ubuntu-latest, 2.7, rspec-2)
test (ubuntu-latest, 2.7, rspec-3)
test (ubuntu-latest, 2.7, test-unit-2)
test (ubuntu-latest, 2.7, test-unit-3)
test (ubuntu-latest, 3.0, activesupport-4)
test (ubuntu-latest, 3.0, activesupport-5)
test (ubuntu-latest, 3.0, minitest-4)
test (ubuntu-latest, 3.0, minitest-5)
test (ubuntu-latest, 3.0, plain-ruby)
test (ubuntu-latest, 3.0, rspec-1)
test (ubuntu-latest, 3.0, rspec-2)
test (ubuntu-latest, 3.0, rspec-3)
test (ubuntu-latest, 3.0, test-unit-2)
test (ubuntu-latest, 3.0, test-unit-3)
test (ubuntu-latest, 3.1, activesupport-4)
test (ubuntu-latest, 3.1, activesupport-5)
test (ubuntu-latest, 3.1, minitest-4)
test (ubuntu-latest, 3.1, minitest-5)
test (ubuntu-latest, 3.1, plain-ruby)
test (ubuntu-latest, 3.1, rspec-1)
test (ubuntu-latest, 3.1, rspec-2)
test (ubuntu-latest, 3.1, rspec-3)
test (ubuntu-latest, 3.1, test-unit-2)
test (ubuntu-latest, 3.1, test-unit-3)
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 0 * * *"
workflow_call:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ["2.6", "2.7", "3.0", "3.1"]
gemfile: # These are duplicated from the test/gemfiles folder
- activesupport-4
- activesupport-5
- minitest-4
- minitest-5
- plain-ruby
- rspec-1
- rspec-2
- rspec-3
- test-unit-2
- test-unit-3
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: false
- name: Run test scenarios
run: |
./test-gemfile test/gemfiles/${{ matrix.gemfile }}
shell: bash
You can’t perform that action at this time.