aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/.github/workflows/codecov.yml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/.github/workflows/codecov.yml')
-rw-r--r--examples/redis-unstable/.github/workflows/codecov.yml24
1 files changed, 0 insertions, 24 deletions
diff --git a/examples/redis-unstable/.github/workflows/codecov.yml b/examples/redis-unstable/.github/workflows/codecov.yml
deleted file mode 100644
index 82656ac..0000000
--- a/examples/redis-unstable/.github/workflows/codecov.yml
+++ /dev/null
@@ -1,24 +0,0 @@
1name: "Codecov"
2
3# Enabling on each push is to display the coverage changes in every PR,
4# where each PR needs to be compared against the coverage of the head commit
5on: [push, pull_request]
6
7jobs:
8 code-coverage:
9 runs-on: ubuntu-22.04
10
11 steps:
12 - name: Checkout repository
13 uses: actions/checkout@v4
14
15 - name: Install lcov and run test
16 run: |
17 sudo apt-get install lcov
18 make lcov
19
20 - name: Upload coverage reports to Codecov
21 uses: codecov/codecov-action@v4
22 with:
23 token: ${{ secrets.CODECOV_TOKEN }}
24 file: ./src/redis.info