Merge pull request #104 from tvdeyen/fix-product-link-tab-select #171
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.0" | |
- "3.1" | |
- "3.2" | |
- "3.3" | |
alchemy: | |
- "7.0" | |
- "7.1.0-b1" | |
solidus: | |
- "4.0" | |
- "4.1" | |
- "4.2" | |
- "4.3" | |
env: | |
ALCHEMY_VERSION: ${{ matrix.alchemy }} | |
SOLIDUS_VERSION: ${{ matrix.solidus }} | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 |