We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4e31114 + 68cc734 commit 0c89998Copy full SHA for 0c89998
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+name: Tests
2
+on: [push]
3
+
4
+jobs:
5
+ ruby:
6
+ name: Ruby Tests
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ ruby-version: [ "2.6", "2.7" ]
11
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v2
15
+ - name: Setup Ruby
16
+ uses: ruby/setup-ruby@v1
17
+ with:
18
+ bundler-cache: true
19
+ ruby-version: ${{ matrix.ruby-version }}
20
+ - name: Run Tests
21
+ run: bundle exec rake spec
.travis.yml
0 commit comments