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.
2 parents 2247007 + 078c9be commit 5bc5798Copy full SHA for 5bc5798
.github/workflows/main.yml
@@ -0,0 +1,33 @@
1
+name: test
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ tests:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ fail-fast: false
10
11
+ matrix:
12
+ ruby-version:
13
+ - '2.5'
14
+ - '2.6'
15
+ - '2.7'
16
+ - '3.0'
17
+ - '3.1'
18
+ - ruby-head
19
+ - jruby
20
+ - jruby-head
21
22
+ steps:
23
+ - uses: actions/checkout@v3
24
25
+ - uses: ruby/setup-ruby@v1
26
+ with:
27
+ ruby-version: ${{ matrix.ruby-version }}
28
+ bundler-cache: true
29
+ continue-on-error: ${{ (matrix.ruby-version == 'ruby-head') || (matrix.ruby-version == 'jruby-head') }}
30
31
+ - run: |
32
+ bundle exec rake
33
.travis.yml
0 commit comments