Skip to content

Commit 022a300

Browse files
committed
Remove Coveralls
1 parent e35913a commit 022a300

4 files changed

Lines changed: 3 additions & 37 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ on:
66
pull_request:
77
branches: [ master ]
88

9-
env:
10-
BUNDLE_WITHOUT: "development"
11-
129
jobs:
1310
test:
1411
runs-on: ${{ matrix.os }}
@@ -19,7 +16,7 @@ jobs:
1916
os: [ ubuntu-latest, windows-latest ]
2017

2118
steps:
22-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2320

2421
- uses: ruby/setup-ruby@v1
2522
with:
@@ -29,28 +26,11 @@ jobs:
2926
- name: bundle exec rspec
3027
run: bundle exec rspec --format progress --force-colour
3128

32-
- name: Prepare Coveralls test coverage report
33-
uses: coverallsapp/github-action@v2
34-
with:
35-
github-token: ${{ secrets.GITHUB_TOKEN }}
36-
flag-name: "${{ matrix.ruby }} @${{ matrix.os }}"
37-
parallel: true
38-
39-
coveralls:
40-
needs: test
41-
runs-on: ubuntu-latest
42-
steps:
43-
- name: Finalize Coveralls test coverage report
44-
uses: coverallsapp/github-action@v2
45-
with:
46-
github-token: ${{ secrets.GITHUB_TOKEN }}
47-
parallel-finished: true
48-
4929
lint:
5030
runs-on: ubuntu-latest
5131

5232
steps:
53-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
5434

5535
- uses: ruby/setup-ruby@v1
5636
with:

Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ group :test do
1212
gem "rubocop-rake"
1313
gem "rubocop-rspec"
1414

15-
gem "simplecov", :require => false
16-
gem "simplecov-lcov", :require => false
15+
gem "simplecov", :require => false
1716
end
1817

1918
group :doc do

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
[![Gem Version](https://badge.fury.io/rb/http-form_data.svg)](http://rubygems.org/gems/http-form_data)
44
[![Build Status](https://github.com/httprb/form_data/workflows/CI/badge.svg)](https://github.com/httprb/form_data/actions?query=workflow%3ACI+branch%3Amaster)
5-
[![Code Climate](https://codeclimate.com/github/httprb/form_data.svg)](https://codeclimate.com/github/httprb/form_data)
6-
[![Coverage Status](https://coveralls.io/repos/github/httprb/form_data/badge.svg?branch=master)](https://coveralls.io/github/httprb/form_data?branch=master)
75

86
Utility-belt to build form data request bodies.
97

spec/support/simplecov.rb

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,6 @@
22

33
require "simplecov"
44

5-
if ENV["CI"]
6-
require "simplecov-lcov"
7-
8-
SimpleCov::Formatter::LcovFormatter.config do |config|
9-
config.report_with_single_file = true
10-
config.lcov_file_name = "lcov.info"
11-
end
12-
13-
SimpleCov.formatter = SimpleCov::Formatter::LcovFormatter
14-
end
15-
165
SimpleCov.start do
176
add_filter "/spec/"
187
enable_coverage :branch

0 commit comments

Comments
 (0)