We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 742505c + de63562 commit 9b13bb0Copy full SHA for 9b13bb0
.github/workflows/ci.yml
@@ -33,6 +33,24 @@ jobs:
33
- name: Run tests
34
run: bin/test
35
36
+ rails6:
37
+ runs-on: ubuntu-latest
38
+ steps:
39
+ - uses: actions/checkout@v3
40
+ - run: rm Gemfile.lock
41
+ - uses: ruby/setup-ruby@v1
42
+ with:
43
+ ruby-version: "3.2"
44
+ bundler: latest
45
+ - name: "Pin to Rails 6.1"
46
+ run: |
47
+ bundle remove actionmailer
48
+ bundle add actionmailer --version "~> 6.1" --skip-install
49
+ bundle add railties --version "~> 6.1" --skip-install
50
+ bundle install
51
+ - name: Run tests
52
+ run: bin/test
53
+
54
user-journey:
55
strategy:
56
fail-fast: false
0 commit comments