Bump version to v7.4.0 #237
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" | |
alchemy: | |
- "7.2-stable" | |
- "7.3-stable" | |
solidus: | |
- "4.1" | |
- "4.2" | |
- "4.3" | |
env: | |
ALCHEMY_VERSION: ${{ matrix.alchemy }} | |
SOLIDUS_VERSION: ${{ 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 |