File tree 1 file changed +24
-2
lines changed
1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change 14
14
- .github/workflows/upstream.yml # this file
15
15
16
16
jobs :
17
+ tests :
18
+ name : " tests (rails main)"
19
+ runs-on : ubuntu-latest
20
+ strategy :
21
+ fail-fast : false
22
+ matrix :
23
+ ruby : ["3.3"]
24
+ steps :
25
+ - uses : actions/checkout@v4
26
+ - uses : ruby/setup-ruby@v1
27
+ with :
28
+ ruby-version : ${{matrix.ruby}}
29
+ - run : |
30
+ rm Gemfile.lock
31
+ bundle remove actionmailer
32
+ git clone --depth 1 --branch main https://github.com/rails/rails
33
+ bundle add actionmailer --path=rails
34
+ bundle add railties --path=rails
35
+ bundle install
36
+ - name : Run tests
37
+ run : bin/test
38
+
17
39
user-journey :
18
40
name : " user-journey (rails main)"
41
+ runs-on : ${{matrix.plat}}-latest
19
42
strategy :
20
43
fail-fast : false
21
44
matrix :
22
45
plat : ["ubuntu", "windows", "macos"]
23
- runs-on : ${{matrix.plat}}-latest
24
46
env :
25
47
RAILSOPTS : --git=https://github.com/rails/rails --branch main
26
48
steps :
27
49
- uses : actions/checkout@v4
28
50
- uses : ruby/setup-ruby@v1
29
51
with :
30
- ruby-version : " 3.2 "
52
+ ruby-version : " 3.3 "
31
53
bundler : latest
32
54
- run : test/integration/user_journey_test.sh
33
55
shell : bash
You can’t perform that action at this time.
0 commit comments