mirror of
https://github.com/redis/redis.git
synced 2026-02-03 20:39:54 -05:00
This PR introduces Codecov to automate code coverage tracking for our project's tests. For more information about the Codecov platform, please refer to https://docs.codecov.com/docs/quick-start --------- Co-authored-by: debing.sun <debing.sun@redis.com>
24 lines
595 B
YAML
24 lines
595 B
YAML
name: "Codecov"
|
|
|
|
# Enabling on each push is to display the coverage changes in every PR,
|
|
# where each PR needs to be compared against the coverage of the head commit
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
code-coverage:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install lcov and run test
|
|
run: |
|
|
sudo apt-get install lcov
|
|
make lcov
|
|
|
|
- name: Upload coverage reports to Codecov
|
|
uses: codecov/codecov-action@v4
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
file: ./src/redis.info
|