Skip to content

Commit

Permalink
Add codecov action
Browse files Browse the repository at this point in the history
  • Loading branch information
mirromutth committed Dec 18, 2023
1 parent 2b9ed41 commit 08ba011
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Codecov

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
codecov:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Run tests for task with spins
run: cargo llvm-cov --no-report -p latches --no-default-features --features task
- name: Run tests for all with atomic-wait
run: cargo llvm-cov --no-report -p latches --no-default-features --features task --features futex --features sync
- name: Runn tests for all features
run: cargo llvm-cov --no-report -p latches --all-features
- name: Generate coverage report
run: cargo llvm-cov report --codecov --output-path codecov.json
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: codecov.json
fail_ci_if_error: true

0 comments on commit 08ba011

Please sign in to comment.