We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67e6d67 commit b01af7dCopy full SHA for b01af7d
.github/workflows/ci.yml
@@ -33,6 +33,23 @@ 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
+ - run: |
46
+ bundle remove actionmailer
47
+ bundle add actionmailer --version "~> 6.1"
48
+ bundle add railties --version "~> 6.1"
49
+ bundle install
50
+ - name: Run tests
51
+ run: bin/test
52
+
53
user-journey:
54
strategy:
55
fail-fast: false
0 commit comments