Merge torrust/torrust-tracker#960: chore: update deps #201
This file contains 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: | |
- develop | |
pull_request_target: | |
branches: | |
- develop | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
report: | |
name: Report | |
environment: coverage | |
runs-on: ubuntu-latest | |
env: | |
CARGO_INCREMENTAL: "0" | |
RUSTFLAGS: "-Z profile -C codegen-units=1 -C opt-level=0 -C link-dead-code -C overflow-checks=off -Z panic_abort_tests -C panic=abort" | |
RUSTDOCFLAGS: "-Z profile -C codegen-units=1 -C opt-level=0 -C link-dead-code -C overflow-checks=off -Z panic_abort_tests -C panic=abort" | |
steps: | |
- id: checkout_push | |
if: github.event_name == 'push' | |
name: Checkout Repository (Push) | |
uses: actions/checkout@v4 | |
- id: checkout_pull_request_target | |
if: github.event_name == 'pull_request_target' | |
name: Checkout Repository (Pull Request Target) | |
uses: actions/checkout@v4 | |
with: | |
ref: "refs/pull/${{ github.event.pull_request.number }}/head" | |
- id: setup | |
name: Setup Toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
components: llvm-tools-preview | |
- id: cache | |
name: Enable Workflow Cache | |
uses: Swatinem/rust-cache@v2 | |
- id: tools | |
name: Install Tools | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: grcov | |
- id: check | |
name: Run Build Checks | |
run: cargo check --tests --benches --examples --workspace --all-targets --all-features | |
- id: clean | |
name: Clean Build Directory | |
run: cargo clean | |
- id: build | |
name: Pre-build Main Project | |
run: cargo build --workspace --all-targets --all-features --jobs 2 | |
- id: build_tests | |
name: Pre-build Tests | |
run: cargo build --workspace --all-targets --all-features --tests --jobs 2 | |
- id: test | |
name: Run Unit Tests | |
run: cargo test --tests --workspace --all-targets --all-features | |
- id: coverage | |
name: Generate Coverage Report | |
uses: alekitto/[email protected] | |
- id: upload | |
name: Upload Coverage Report | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ${{ steps.coverage.outputs.report }} | |
verbose: true | |
fail_ci_if_error: true |