Skip to content

chore(licenses): Fix badges (#51) #27

chore(licenses): Fix badges (#51)

chore(licenses): Fix badges (#51) #27

Workflow file for this run

on:
push:
branches:
- main
name: Codecov
jobs:
test:
name: Test
env:
RUSTFLAGS: -C instrument-coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: rustup component add llvm-tools-preview
- run: |
cargo install grcov;
cargo test --all-features;
mkdir /tmp/cov;
grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov;
- uses: codecov/codecov-action@v3
with:
directory: /tmp/cov/
name: overwatch-codecov
fail_ci_if_error: true