We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a29da58 commit dfa6972Copy full SHA for dfa6972
.github/workflows/test.yml
@@ -0,0 +1,31 @@
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
27
+ ruby-version: ${{ matrix.version }}
28
+ - name: ruby version
29
+ run: ruby -v
30
+ - run: bundle install
31
+ - run: bundle exec rake -t
.travis.yml
0 commit comments