We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e8dff2 commit 23cdc75Copy full SHA for 23cdc75
1 file changed
.github/workflows/ruby.yml
@@ -48,17 +48,12 @@ jobs:
48
ruby-version: ${{ matrix.ruby }}
49
bundler-cache: true
50
51
- - name: Setup Code Climate test-reporter
52
- run: |
53
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
54
- chmod +x ./cc-test-reporter
55
- ./cc-test-reporter before-build
56
-
57
- name: Ruby Tests
58
run: bin/rake test
59
60
- - name: Upload code coverage to Code Climate
+ - name: Upload coverage to Qlty
61
if: ${{ contains(github.ref, 'main') }}
62
63
- export GIT_BRANCH="${GITHUB_REF/refs\/heads\//}"
64
- ./cc-test-reporter after-build -r ${{secrets.CC_TEST_REPORTER_ID}}
+ uses: qltysh/qlty-action/coverage@main
+ with:
+ token: ${{secrets.QLTY_COVERAGE_TOKEN}}
+ files: coverage/.resultset.json
0 commit comments