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 53c4e54 + 2738d91 commit 3c3a84fCopy full SHA for 3c3a84f
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ name: Ruby ${{ matrix.ruby }}
9
+ strategy:
10
+ matrix:
11
+ ruby: ["2.5", "2.6", "2.7"]
12
+ steps:
13
14
+ - name: Check out code
15
+ uses: actions/checkout@v3
16
17
+ - name: Set up Ruby ${{ matrix.ruby }}
18
+ uses: ruby/setup-ruby@v1
19
+ with:
20
+ ruby-version: ${{ matrix.ruby }}
21
+ bundler-cache: true
22
23
+ - name: RuboCop
24
+ run: bundle exec rubocop || true # until we fix offenses due to outdated config
25
26
+ - name: Tests
27
+ run: bundle exec rspec
.travis.yml
0 commit comments