File tree Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change 1414 - .github/workflows/upstream.yml # this file
1515
1616jobs :
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+
1739 user-journey :
1840 name : " user-journey (rails main)"
41+ runs-on : ${{matrix.plat}}-latest
1942 strategy :
2043 fail-fast : false
2144 matrix :
2245 plat : ["ubuntu", "windows", "macos"]
23- runs-on : ${{matrix.plat}}-latest
2446 env :
2547 RAILSOPTS : --git=https://github.com/rails/rails --branch main
2648 steps :
2749 - uses : actions/checkout@v4
2850 - uses : ruby/setup-ruby@v1
2951 with :
30- ruby-version : " 3.2 "
52+ ruby-version : " 3.3 "
3153 bundler : latest
3254 - run : test/integration/user_journey_test.sh
3355 shell : bash
You can’t perform that action at this time.
0 commit comments