Skip to content

Merge pull request #121 from AlchemyCMS/alchemy-7.4 #266

Merge pull request #121 from AlchemyCMS/alchemy-7.4

Merge pull request #121 from AlchemyCMS/alchemy-7.4 #266

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
Rspec:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
ruby-version:
- "3.1"
- "3.2"
- "3.3"
alchemy:
- "7.2-stable"
- "7.3-stable"
- "7.4-stable"
solidus:
- "v4.1"
- "v4.2"
- "v4.3"
- "v4.4"
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