File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Tests
2+
3+ on : [push, pull_request]
4+
5+ concurrency :
6+ group : tests-${{ format('{0}-{1}', github.head_ref || github.run_number, github.job) }}
7+ cancel-in-progress : true
8+
9+ jobs :
10+ build :
11+ strategy :
12+ fail-fast : false
13+ matrix :
14+ # macos-latest uses arm64, macos-13 uses x86
15+ os : [ubuntu-latest]
16+ ruby : ['3.4', 'head']
17+
18+ name : ${{matrix.os}}, ${{matrix.ruby}}
19+
20+ if : github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
21+
22+ runs-on : ${{matrix.os}}
23+ steps :
24+ - uses : actions/checkout@v4
25+ with :
26+ submodules : recursive
27+
28+ - uses : ruby/setup-ruby@v1
29+ with :
30+ ruby-version : ${{matrix.ruby}}
31+ bundler-cache : true # 'bundle install' and cache
32+ - name : Run tests
33+ # run: bundle exec ruby test/test_um.rb --name test_read_each_raising_2
34+ run : bundle exec rake test
You can’t perform that action at this time.
0 commit comments