g2_command 0.3.0 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,26 +0,0 @@
1
- name: Ruby
2
-
3
- on: [push]
4
-
5
- jobs:
6
- build:
7
-
8
- runs-on: ubuntu-latest
9
-
10
- steps:
11
- - uses: actions/checkout@v2
12
- - name: Set up Ruby
13
- uses: ruby/setup-ruby@v1
14
- with:
15
- ruby-version: 2.6.6
16
- - name: Configure Bundler
17
- run: |
18
- gem install bundler:2.1.4 --no-document
19
- bundle install --jobs 4 --retry 3
20
- - name: Run tests with RSpec
21
- uses: paambaati/codeclimate-action@v2.5.4
22
- env:
23
- CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
24
- with:
25
- coverageCommand: bundle exec rspec
26
- debug: false