We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2d221f commit 50f162eCopy full SHA for 50f162e
1 file changed
.github/workflows/main.yml
@@ -51,7 +51,6 @@ jobs:
51
env:
52
RAILS_ENV: test
53
CI: true
54
- BUNDLE_GEMFILE: gemfiles/${{ matrix.appraisal }}.gemfile
55
steps:
56
- name: Checkout code
57
uses: actions/checkout@v4
@@ -61,12 +60,14 @@ jobs:
61
60
with:
62
ruby-version: ${{ matrix.ruby }}
63
bundler-cache: true
+ env:
64
+ BUNDLE_GEMFILE: gemfiles/${{ matrix.appraisal }}.gemfile
65
66
- name: Set up Dummy
67
run: spec/dummy/bin/setup
68
69
- name: Run tests
- run: bin/rspec
70
+ run: bin/appraisal ${{ matrix.appraisal }} rspec
71
72
- name: Run tests with customization
- run: CHANGE_FIELD_BASE_CLASS=true CHANGE_VALUE_CLASS=true bin/rspec
73
+ run: CHANGE_FIELD_BASE_CLASS=true CHANGE_VALUE_CLASS=true bin/appraisal ${{ matrix.appraisal }} rspec
0 commit comments