Skip to content

Fix variant select ingredient #218

Fix variant select ingredient

Fix variant select ingredient #218

Workflow file for this run

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