Bug fix: reset io_last_written on c->buf resize to prevent stale poin… #459
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" | |
| # 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: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install lcov and run test | |
| run: | | |
| sudo apt-get install lcov tclx | |
| make lcov | |
| - name: Upload code coverage | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| file: ./src/valkey.info |