update reqwest to 0.13.1 #323
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: coverage | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| concurrency: | |
| group: ${{ github.ref }}-coverage | |
| cancel-in-progress: true | |
| jobs: | |
| coverage: | |
| name: Code coverage | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: llvm-tools | |
| - uses: taiki-e/install-action@cargo-llvm-cov | |
| - run: | | |
| cargo llvm-cov clean --workspace | |
| cargo llvm-cov --no-report --no-default-features --package http-cache --features manager-cacache,cacache-smol,with-http-types,manager-moka,streaming-smol | |
| cargo llvm-cov --no-report --no-default-features --package http-cache --features manager-cacache,cacache-tokio,with-http-types,manager-moka,streaming-tokio | |
| cargo llvm-cov --no-report --package http-cache-surf --all-features | |
| cargo llvm-cov --no-report --package http-cache-ureq --no-default-features --features manager-cacache | |
| cargo llvm-cov --no-report --package http-cache-ureq --all-features | |
| cargo llvm-cov --no-report --package http-cache-reqwest --all-features | |
| cargo llvm-cov --no-report --package http-cache-tower --all-features | |
| cargo llvm-cov --no-report --package http-cache-quickcache --all-features | |
| cargo llvm-cov report --lcov --output-path lcov.info | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| files: lcov.info | |
| fail_ci_if_error: false | |