wip
Build and test / build (push) Has been cancelled Details
Build and test / check (push) Has been cancelled Details
Build and test / test (push) Failing after 2m1s Details

This commit is contained in:
Oystein Kristoffer Tveit 2024-04-30 17:50:31 +02:00
parent d0435d02be
commit c1145d2372
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
1 changed files with 16 additions and 7 deletions

View File

@ -65,11 +65,20 @@ jobs:
run: mkdir -p target/test-report
- name: Run tests
run: cargo test --all-features --release -Z unstable-options --report-time --format json | tee target/test-report/test-report.json
run: |
cargo test \
--all-features \
--release \
--no-fail-fast \
-- \
-Z unstable-options \
--report-time \
--format json \
| tee target/test-report/test-report.json
env:
RUSTFLAGS: "-Cinstrument-coverage"
LLVM_PROFILE_FILE: "target/release/coverage/%p-%m.profraw"
LLVM_PROFILE_FILE: "target/coverage/%p-%m.profraw"
- name: Install markdown-test-report
run: cargo binstall -y markdown-test-report
@ -81,10 +90,10 @@ jobs:
with:
name: test-report
path: target/test-report/test-report.md
- name: Install grcov
run: cargo binstall -y grcov
- name: Generate coverage report
run: |
grcov \
@ -101,8 +110,8 @@ jobs:
--ignore "*cargo*" \
-t html \
-o ./target/coverage/html \
target/coverage/prof
target/coverage/
- name: Upload coverage report
uses: actions/upload-artifact@v4
with: