Skip to content

Commit

Permalink
Don't run Rails 8.0 below Ruby 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nickcharlton committed Nov 13, 2024
1 parent 481219c commit 3bd8f11
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
Expand All @@ -58,6 +58,7 @@ jobs:
run: yarn run build && yarn run build:css
- name: Run tests
run: bundle exec rspec
if: ${{ matrix.ruby >= '3.2' }}
- name: Appraise Rails 6.0
run: bundle exec appraisal rails60 rspec
if: ${{ matrix.ruby <= '3.0' }}
Expand All @@ -67,3 +68,4 @@ jobs:
run: bundle exec appraisal rails70 rspec
- name: Appraisal Rails 8.0
run: bundle exec appraisal rails80 rspec
if: ${{ matrix.ruby >= '3.2' }}

0 comments on commit 3bd8f11

Please sign in to comment.