Skip to content

Commit

Permalink
Merge pull request #315 from rails/flavorjones-test-rails-6
Browse files Browse the repository at this point in the history
ci: add a job that tests against Rails 6.1
  • Loading branch information
flavorjones authored Jan 8, 2024
2 parents 742505c + de63562 commit 9b13bb0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,24 @@ jobs:
- name: Run tests
run: bin/test

rails6:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rm Gemfile.lock
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
bundler: latest
- name: "Pin to Rails 6.1"
run: |
bundle remove actionmailer
bundle add actionmailer --version "~> 6.1" --skip-install
bundle add railties --version "~> 6.1" --skip-install
bundle install
- name: Run tests
run: bin/test

user-journey:
strategy:
fail-fast: false
Expand Down

0 comments on commit 9b13bb0

Please sign in to comment.