Skip to content

Commit

Permalink
Release v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuckal777 committed Dec 28, 2024
1 parent e30e74a commit 9fe8095
Show file tree
Hide file tree
Showing 6 changed files with 176 additions and 206 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,20 @@ jobs:
with:
toolchain: nightly
override: true
components: llvm-tools
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
with:
command: test
args: --locked --all-features --no-fail-fast
env:
CARGO_INCREMENTAL: '0'
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
- uses: actions-rs/[email protected]
id: grcov
with:
config: grcov.yaml
RUSTFLAGS: '-Cinstrument-coverage'
RUSTDOCFLAGS: '-Cinstrument-coverage'
LLVM_PROFILE_FILE: 'nicator-%p-%m.profraw'
- run: cargo install grcov
- run: grcov . -s . --binary-path ./target/debug/ -t lcov --branch --ignore-not-existing --ignore '/usr/*' --ignore '/home/runner/.cargo/*' -o coverage
- uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ${{ steps.grcov.outputs.report }}
path-to-lcov: coverage
Loading

0 comments on commit 9fe8095

Please sign in to comment.