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 cd6f0a0 commit 2a6769dCopy full SHA for 2a6769d
.github/workflows/codecheck.yml
@@ -0,0 +1,12 @@
1
+name: Codecheck
2
+on: [push, pull_request]
3
+jobs:
4
+ codecheck:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v2
8
+ - uses: ruby/setup-ruby@v1
9
+ with:
10
+ ruby-version: 2.7
11
+ bundler-cache: true
12
+ - run: bundle exec rubocop
.github/workflows/tests.yml
@@ -0,0 +1,17 @@
+name: Tests
+ test:
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [ubuntu-latest]
+ ruby: [2.5, 2.6, 2.7]
+ runs-on: ${{ matrix.os }}
13
14
15
+ ruby-version: ${{ matrix.ruby }}
16
17
+ - run: bundle exec rake
0 commit comments