Summary
Jobs
Rspec (3.1, 7.2-stable, v4.1)
Rspec (3.1, 7.2-stable, v4.2)
Rspec (3.1, 7.2-stable, v4.3)
Rspec (3.1, 7.2-stable, v4.4)
Rspec (3.1, 7.2-stable, main)
Rspec (3.1, 7.3-stable, v4.1)
Rspec (3.1, 7.3-stable, v4.2)
Rspec (3.1, 7.3-stable, v4.3)
Rspec (3.1, 7.3-stable, v4.4)
Rspec (3.1, 7.3-stable, main)
Rspec (3.1, 7.4-stable, v4.1)
Rspec (3.1, 7.4-stable, v4.2)
Rspec (3.1, 7.4-stable, v4.3)
Rspec (3.1, 7.4-stable, v4.4)
Rspec (3.1, 7.4-stable, main)
Rspec (3.1, main, v4.1)
Rspec (3.1, main, v4.2)
Rspec (3.1, main, v4.3)
Rspec (3.1, main, v4.4)
Rspec (3.1, main, main)
Rspec (3.2, 7.2-stable, v4.1)
Rspec (3.2, 7.2-stable, v4.2)
Rspec (3.2, 7.2-stable, v4.3)
Rspec (3.2, 7.2-stable, v4.4)
Rspec (3.2, 7.2-stable, main)
Rspec (3.2, 7.3-stable, v4.1)
Rspec (3.2, 7.3-stable, v4.2)
Rspec (3.2, 7.3-stable, v4.3)
Rspec (3.2, 7.3-stable, v4.4)
Rspec (3.2, 7.3-stable, main)
Rspec (3.2, 7.4-stable, v4.1)
Rspec (3.2, 7.4-stable, v4.2)
Rspec (3.2, 7.4-stable, v4.3)
Rspec (3.2, 7.4-stable, v4.4)
Rspec (3.2, 7.4-stable, main)
Rspec (3.2, main, v4.1)
Rspec (3.2, main, v4.2)
Rspec (3.2, main, v4.3)
Rspec (3.2, main, v4.4)
Rspec (3.2, main, main)
Rspec (3.3, 7.2-stable, v4.1)
Rspec (3.3, 7.2-stable, v4.2)
Rspec (3.3, 7.2-stable, v4.3)
Rspec (3.3, 7.2-stable, v4.4)
Rspec (3.3, 7.2-stable, main)
Rspec (3.3, 7.3-stable, v4.1)
Rspec (3.3, 7.3-stable, v4.2)
Rspec (3.3, 7.3-stable, v4.3)
Rspec (3.3, 7.3-stable, v4.4)
Rspec (3.3, 7.3-stable, main)
Rspec (3.3, 7.4-stable, v4.1)
Rspec (3.3, 7.4-stable, v4.2)
Rspec (3.3, 7.4-stable, v4.3)
Rspec (3.3, 7.4-stable, v4.4)
Rspec (3.3, 7.4-stable, main)
Rspec (3.3, main, v4.1)
Rspec (3.3, main, v4.2)
Rspec (3.3, main, v4.3)
Rspec (3.3, main, v4.4)
Rspec (3.3, main, main)
Rspec (3.4, 7.2-stable, v4.1)
Rspec (3.4, 7.2-stable, v4.2)
Rspec (3.4, 7.2-stable, v4.3)
Rspec (3.4, 7.2-stable, v4.4)
Rspec (3.4, 7.2-stable, main)
Rspec (3.4, 7.3-stable, v4.1)
Rspec (3.4, 7.3-stable, v4.2)
Rspec (3.4, 7.3-stable, v4.3)
Rspec (3.4, 7.3-stable, v4.4)
Rspec (3.4, 7.3-stable, main)
Rspec (3.4, 7.4-stable, v4.1)
Rspec (3.4, 7.4-stable, v4.2)
Rspec (3.4, 7.4-stable, v4.3)
Rspec (3.4, 7.4-stable, v4.4)
Rspec (3.4, 7.4-stable, main)
Rspec (3.4, main, v4.1)
Rspec (3.4, main, v4.2)
Rspec (3.4, main, v4.3)
Rspec (3.4, main, v4.4)
Rspec (3.4, main, main)
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: CI
on: [push, pull_request]
jobs:
Rspec:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
- "3.1"
- "3.2"
- "3.3"
- "3.4"
alchemy:
- "7.2-stable"
- "7.3-stable"
- "7.4-stable"
- "main"
solidus:
- "v4.1"
- "v4.2"
- "v4.3"
- "v4.4"
- "main"
env:
ALCHEMY_BRANCH: ${{ matrix.alchemy }}
SOLIDUS_BRANCH: ${{ matrix.solidus }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Prepare tests
run: bundle exec rake test_setup
- name: Run tests
run: bundle exec rspec
You can’t perform that action at this time.