File tree Expand file tree Collapse file tree 3 files changed +60
-0
lines changed Expand file tree Collapse file tree 3 files changed +60
-0
lines changed Original file line number Diff line number Diff line change 1+ name : macos
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ build :
7+ runs-on : macos-latest
8+ strategy :
9+ matrix :
10+ ruby : [ 'head' ]
11+ steps :
12+ - uses : actions/checkout@master
13+ - name : Set up Ruby
14+ uses : ruby/setup-ruby@v1
15+ with :
16+ ruby-version : ${{ matrix.ruby }}
17+ - name : Set up Bundler
18+ run : gem install rake-compiler --no-document
19+ - name : Run test
20+ run : rake
Original file line number Diff line number Diff line change 1+ name : ubuntu
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ strategy :
9+ matrix :
10+ ruby : [ 'head' ]
11+ steps :
12+ - uses : actions/checkout@master
13+ - name : Set up Ruby
14+ uses : ruby/setup-ruby@v1
15+ with :
16+ ruby-version : ${{ matrix.ruby }}
17+ - name : Set up Bundler
18+ run : gem install rake-compiler --no-document
19+ - name : Run test
20+ run : rake
Original file line number Diff line number Diff line change 1+ name : windows
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ build :
7+ runs-on : windows-latest
8+ strategy :
9+ matrix :
10+ ruby : [ 'head' ]
11+ steps :
12+ - uses : actions/checkout@master
13+ - name : Set up Ruby
14+ uses : ruby/setup-ruby@v1
15+ with :
16+ ruby-version : ${{ matrix.ruby }}
17+ - name : Set up Bundler
18+ run : gem install rake-compiler --no-document
19+ - name : Run test
20+ run : rake
You can’t perform that action at this time.
0 commit comments