File tree Expand file tree Collapse file tree 3 files changed +44
-5
lines changed Expand file tree Collapse file tree 3 files changed +44
-5
lines changed Original file line number Diff line number Diff line change 65
65
ruby-version : ${{ matrix.ruby }}
66
66
bundler-cache : true
67
67
68
- - name : RSpec & publish code coverage
69
-
70
- env :
71
- CC_TEST_REPORTER_ID : ${{ secrets.CC_TEST_REPORTER_ID }}
68
+ - name : Run RSpec
69
+ run : bin/rspec
70
+
71
+ - name : Publish code coverage
72
+ uses : qltysh/qlty-action/coverage@v1
72
73
with :
73
- coverageCommand : bin/rspec
74
+ token : ${{ secrets.QLTY_COVERAGE_TOKEN }}
75
+ files : coverage/coverage.json
Original file line number Diff line number Diff line change
1
+ config_version = " 0"
2
+
3
+ [[source ]]
4
+ name = " default"
5
+ default = true
6
+
7
+ [[plugin ]]
8
+ name = " actionlint"
9
+
10
+ [[plugin ]]
11
+ name = " checkov"
12
+ version = " 3.2.49"
13
+
14
+ [[plugin ]]
15
+ name = " markdownlint"
16
+ version = " 0.31.1"
17
+
18
+ [[plugin ]]
19
+ name = " osv-scanner"
20
+
21
+ [[plugin ]]
22
+ name = " prettier"
23
+ version = " 2.8.4"
24
+
25
+ [[plugin ]]
26
+ name = " ripgrep"
27
+
28
+ [[plugin ]]
29
+ name = " trivy"
30
+
31
+ [[plugin ]]
32
+ name = " trufflehog"
33
+
34
+ [[plugin ]]
35
+ name = " yamllint"
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
require 'simplecov'
4
+ require 'simplecov_json_formatter'
4
5
5
6
# Start SimpleCov
6
7
SimpleCov . start do
8
+ formatter SimpleCov ::Formatter ::JSONFormatter
7
9
add_filter 'spec/'
8
10
end
9
11
You can’t perform that action at this time.
0 commit comments