chore(deps): bump toml from 1.1.3+spec-1.1.0 to 1.1.4+spec-1.1.0 (#419) #768
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: Code coverage | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| generate-coverage: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Rust nightly | |
| run: | | |
| rustup default nightly | |
| rustup component add llvm-tools-preview | |
| - uses: actions/checkout@v7 | |
| with: | |
| lfs: true | |
| - name: Install just | |
| uses: extractions/setup-just@v4 | |
| - name: Install grcov | |
| run: | | |
| sudo apt update | |
| sudo apt install -y grcov | |
| - name: Install just | |
| uses: extractions/setup-just@v4 | |
| - name: Generate coverage | |
| run: just coverage | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v7 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: target/debug/coverage/byte-knight.lcov |