File tree 1 file changed +21
-2
lines changed
1 file changed +21
-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
+ env :
25
+ RAILSOPTS : --git=https://github.com/rails/rails --branch main
26
+ steps :
27
+ - uses : actions/checkout@v4
28
+ - run : rm Gemfile.lock
29
+ - uses : ruby/setup-ruby@v1
30
+ with :
31
+ ruby-version : ${{matrix.ruby}}
32
+ bundler : latest
33
+ - name : Run tests
34
+ run : bin/test
35
+
17
36
user-journey :
18
37
name : " user-journey (rails main)"
38
+ runs-on : ${{matrix.plat}}-latest
19
39
strategy :
20
40
fail-fast : false
21
41
matrix :
22
42
plat : ["ubuntu", "windows", "macos"]
23
- runs-on : ${{matrix.plat}}-latest
24
43
env :
25
44
RAILSOPTS : --git=https://github.com/rails/rails --branch main
26
45
steps :
27
46
- uses : actions/checkout@v4
28
47
- uses : ruby/setup-ruby@v1
29
48
with :
30
- ruby-version : " 3.2 "
49
+ ruby-version : " 3.3 "
31
50
bundler : latest
32
51
- run : test/integration/user_journey_test.sh
33
52
shell : bash
You can’t perform that action at this time.
0 commit comments