Skip to content

Commit 2c575bf

Browse files
committedJun 30, 2024·
chore: fix codecov coverage submitting
The ruby uploader has been deprecated long ago. Instead, we generate an XML report and use the newer GitHub action to upload the report to codecov. The required secrets have already been added to the repository.
1 parent 041b1ea commit 2c575bf

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed
 

‎.github/workflows/test.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,13 @@ jobs:
3131
BUNDLE_JOBS: 4
3232
BUNDLE_RETRY: 3
3333

34-
- run: bundle exec rspec --color --format documentation
34+
- run: |
35+
bundle exec rspec --color --format documentation
36+
37+
- uses: codecov/codecov-action@v4
38+
with:
39+
fail_ci_if_error: true
40+
token: ${{ secrets.CODECOV_TOKEN }}
3541

3642
rubocop:
3743
name: rubocop

‎Gemfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ gem 'rake-release'
1010
gem 'typhoeus'
1111

1212
group :test do
13-
gem 'codecov', require: false
14-
gem 'simplecov', require: false
13+
gem 'simplecov'
14+
gem 'simplecov-cobertura'
1515

1616
gem 'puma'
1717
gem 'rspec', '~> 3.0'

‎spec/spec_helper.rb

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@
44
require 'rspec/collection_matchers'
55

66
require 'simplecov'
7+
require 'simplecov-cobertura'
8+
79
SimpleCov.start do
810
add_filter 'spec'
911
end
1012

11-
if ENV['CI']
12-
require 'codecov'
13-
SimpleCov.formatter = SimpleCov::Formatter::Codecov
14-
end
13+
SimpleCov.formatters = [
14+
SimpleCov::Formatter::HTMLFormatter,
15+
SimpleCov::Formatter::CoberturaFormatter,
16+
]
1517

1618
require 'restify'
1719

0 commit comments

Comments
 (0)
Please sign in to comment.