Skip to content

Commit eef3967

Browse files
committed
remove codecov
1 parent 041e113 commit eef3967

File tree

2 files changed

+4
-17
lines changed

2 files changed

+4
-17
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,11 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v3
1616

17-
- name: Install dependencies
18-
run: |
19-
sudo apt-get update
20-
sudo apt-get install -y shellcheck kcov
17+
- name: Install shellcheck
18+
run: sudo apt-get update && sudo apt-get install -y shellcheck
2119

2220
- name: Check for syntax errors (lint)
2321
run: make lint
2422

25-
- name: Run tests with coverage
26-
run: |
27-
mkdir -p coverage
28-
kcov --include-path=./lib_ini.sh coverage ./run_tests.sh
29-
echo "Coverage report generated"
30-
31-
- name: Upload coverage to Codecov
32-
uses: codecov/codecov-action@v3
33-
with:
34-
directory: ./coverage
35-
fail_ci_if_error: false
36-
verbose: true
23+
- name: Run tests
24+
run: make test

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Bash INI Parser
22

33
[![CI](https://github.com/lsferreira42/bash-ini-parser/actions/workflows/ci.yml/badge.svg)](https://github.com/lsferreira42/bash-ini-parser/actions/workflows/ci.yml)
4-
[![codecov](https://codecov.io/gh/lsferreira42/bash-ini-parser/branch/main/graph/badge.svg)](https://codecov.io/gh/lsferreira42/bash-ini-parser)
54

65
A robust shell script library for parsing and manipulating INI configuration files in Bash.
76

0 commit comments

Comments
 (0)