File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,50 +5,38 @@ on: [push, pull_request]
55permissions :
66 contents : read
77
8- env :
9- CONSOLE_OUTPUT : XTerm
10-
118jobs :
129 test :
1310 name : ${{matrix.ruby}} on ${{matrix.os}}
1411 runs-on : ${{matrix.os}}-latest
1512 continue-on-error : ${{matrix.experimental}}
1613
1714 strategy :
18- fail-fast : false
1915 matrix :
2016 os :
2117 - ubuntu
2218 - macos
23- - windows
2419
2520 ruby :
26- - " 3.0"
27- - " 3.1"
2821 - " 3.2"
2922 - " 3.3"
30- - " head"
23+ - " 3.4"
24+ - " 4.0"
3125
3226 experimental : [false]
3327
34- # include:
35- # - os: ubuntu
36- # ruby: truffleruby
37- # experimental: true
38- # - os: ubuntu
39- # ruby: jruby
40- # experimental: true
41- # - os: ubuntu
42- # ruby: head
43- # experimental: true
28+ include :
29+ - os : ubuntu
30+ ruby : head
31+ experimental : true
4432
4533 steps :
46- - uses : actions/checkout@v3
34+ - uses : actions/checkout@v6
4735 - uses : ruby/setup-ruby@v1
4836 with :
4937 ruby-version : ${{matrix.ruby}}
5038 bundler-cache : true
5139
5240 - name : Run tests
53- timeout-minutes : 2
54- run : bundle exec rake
41+ timeout-minutes : 10
42+ run : bundle exec bake test
You can’t perform that action at this time.
0 commit comments