Fix variant select ingredient #219
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.0" | |
- "3.1" | |
- "3.2" | |
- "3.3" | |
alchemy: | |
- "main" | |
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 |