File tree Expand file tree Collapse file tree 2 files changed +28
-5
lines changed Expand file tree Collapse file tree 2 files changed +28
-5
lines changed Original file line number Diff line number Diff line change 4242 - name : Run tests
4343 timeout-minutes : 5
4444 run : ${{matrix.env}} bundle exec rspec
45-
46- - name : Run external tests
47- timeout-minutes : 5
48- if : matrix.experimental == false && matrix.os == 'ubuntu'
49- run : ${{matrix.env}} bundle exec bake external
Original file line number Diff line number Diff line change 1+ name : External
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ test :
7+ name : ${{matrix.ruby}} on ${{matrix.os}}
8+ runs-on : ${{matrix.os}}-latest
9+
10+ strategy :
11+ matrix :
12+ os :
13+ - ubuntu
14+
15+ ruby :
16+ - " 3.1.1"
17+ - " head"
18+
19+ steps :
20+ - uses : actions/checkout@v2
21+ - uses : ruby/setup-ruby@v1
22+ with :
23+ ruby-version : ${{matrix.ruby}}
24+ bundler-cache : true
25+
26+ - name : Run tests
27+ timeout-minutes : 5
28+ run : ${{matrix.env}} bundle exec bake external
You can’t perform that action at this time.
0 commit comments