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 dfa6972 commit 4529279Copy full SHA for 4529279
.github/workflows/rubocop.yml
@@ -0,0 +1,12 @@
1
+name: Run rubocop
2
+on: [push, pull_request]
3
+jobs:
4
+ rubocop:
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
+ - run: bundle install
12
+ - run: bundle exec rake -t rubocop
.github/workflows/test.yml
@@ -25,7 +25,5 @@ jobs:
25
- uses: ruby/setup-ruby@v1
26
with:
27
ruby-version: ${{ matrix.version }}
28
- - name: ruby version
29
- run: ruby -v
30
- run: bundle install
31
- - run: bundle exec rake -t
+ - run: bundle exec rake -t test
0 commit comments