fix: 🐛 typing of stats #5114
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
# Run cargo-llvm-cov and upload to codecov.io | |
name: Code Coverage | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
types: [ opened, synchronize ] | |
# Cancel prev CI if new commit | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
coverage: | |
name: Code Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/rustup | |
with: | |
clippy: false | |
save-cache: false | |
restore-cache: false | |
- name: Run tests | |
run: cargo test -p mako | |
env: | |
CARGO_INCREMENTAL: '0' | |
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cllvm-args=--inline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests' | |
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cllvm-args=--inline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests' | |
- name: rust-grcov | |
# You may pin to the exact commit or the version. | |
# uses: actions-rs/grcov@bb47b1ed7883a1502fa6875d562727ace2511248 | |
uses: actions-rs/[email protected] | |
- name: Codecov | |
# You may pin to the exact commit or the version. | |
# uses: codecov/codecov-action@81cd2dc8148241f03f5839d295e000b8f761e378 | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
# Repository upload token - get it from codecov.io. Required only for private repositories | |
# token: # optional | |
# Specify whether the Codecov output should be verbose | |
verbose: true | |
fail_ci_if_error: true |