File tree Expand file tree Collapse file tree 3 files changed +41
-16
lines changed
Expand file tree Collapse file tree 3 files changed +41
-16
lines changed Original file line number Diff line number Diff line change 1+ name : Run rubocop
2+ on : [push, pull_request]
3+ jobs :
4+ rubocop :
5+ runs-on : ubuntu-latest
6+ steps :
7+ - uses : actions/checkout@v2
8+ - uses : ruby/setup-ruby@v1
9+ with :
10+ ruby-version : 2.7
11+ - run : bundle install
12+ - run : bundle exec rake -t rubocop
Original file line number Diff line number Diff line change 1+ name : Run tests
2+ on : [push, pull_request]
3+ jobs :
4+ test :
5+ runs-on : ${{ matrix.os }}
6+ strategy :
7+ fail-fast : false
8+ matrix :
9+ os : [ubuntu-latest, windows-latest, macos-latest]
10+ version :
11+ [
12+ 2.4,
13+ 2.5,
14+ 2.6,
15+ 2.7,
16+ jruby,
17+ ]
18+ exclude :
19+ - os : windows-latest
20+ version : jruby
21+ steps :
22+ - uses : actions/checkout@v2
23+ with :
24+ submodules : true
25+ - uses : ruby/setup-ruby@v1
26+ with :
27+ ruby-version : ${{ matrix.version }}
28+ - run : bundle install
29+ - run : bundle exec rake -t test
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments