Added a cluster dummy #530
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Codecov" | |
| permissions: | |
| contents: read | |
| # 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: | |
| paths-ignore: | |
| - '**/*.md' | |
| - '**/00-RELEASENOTES' | |
| - '**/COPYING' | |
| pull_request: | |
| paths-ignore: | |
| - '**/*.md' | |
| - '**/00-RELEASENOTES' | |
| - '**/COPYING' | |
| concurrency: | |
| group: codecov-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| code-coverage: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Install libbacktrace | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| repository: ianlancetaylor/libbacktrace | |
| ref: b9e40069c0b47a722286b94eb5231f7f05c08713 | |
| path: libbacktrace | |
| - run: cd libbacktrace && ./configure && make && sudo make install | |
| - name: Checkout Valkey | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install lcov and run test | |
| run: | | |
| sudo apt-get install lcov tclx | |
| make lcov USE_LIBBACKTRACE=yes | |
| - name: Upload code coverage | |
| uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: ./src/valkey.info |