File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -11,28 +11,40 @@ jobs:
1111 include :
1212 - ruby : ' 2.7'
1313 rails : ' 7.0'
14+ - ruby : ' 2.7'
15+ rails : ' main'
1416 - ruby : ' 3.0'
1517 rails : ' 6.0'
1618 - ruby : ' 3.0'
1719 rails : ' 6.1'
1820 - ruby : ' 3.0'
1921 rails : ' 7.0'
22+ - ruby : ' 3.0'
23+ rails : ' main'
2024 - ruby : ' 3.1'
2125 rails : ' 6.1'
2226 - ruby : ' 3.1'
2327 rails : ' 7.0'
28+ - ruby : ' 3.1'
29+ rails : ' main'
2430 - ruby : ' 3.2'
2531 rails : ' 7.0'
32+ - ruby : ' 3.2'
33+ rails : ' main'
2634 - ruby : head
2735 rails : ' 6.0'
2836 - ruby : head
2937 rails : ' 6.1'
38+ - ruby : head
39+ rails : ' main'
3040 - ruby : truffleruby
3141 rails : ' 6.0'
3242 - ruby : truffleruby
3343 rails : ' 6.1'
3444 - ruby : truffleruby
3545 rails : ' 7.0'
46+ - ruby : truffleruby
47+ rails : ' main'
3648
3749 env :
3850 BUNDLE_GEMFILE : ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails }}.gemfile
4860
4961 - name : Run tests
5062 run : bundle exec rake test
51- continue-on-error : ${{ matrix.ruby == 'head' || matrix.ruby == 'truffleruby' }}
63+ continue-on-error : ${{ matrix.ruby == 'head' || matrix.ruby == 'truffleruby' || matrix.rails == 'main' }}
5264 timeout-minutes : 3
Original file line number Diff line number Diff line change 1+ source "https://rubygems.org"
2+
3+ gem "activemodel", github: "rails/rails", branch: "main"
4+ gem "railties", github: "rails/rails", branch: "main"
5+
6+ gemspec path: "../"
You can’t perform that action at this time.
0 commit comments