wip
This commit is contained in:
parent
d0435d02be
commit
c1d0182907
|
@ -47,6 +47,8 @@ jobs:
|
||||||
|
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest-personal
|
runs-on: ubuntu-latest-personal
|
||||||
|
env:
|
||||||
|
PATH: ${{ env.HOME }}/.cargo/bin:${{ runner.path }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: cargo-bins/cargo-binstall@main
|
- uses: cargo-bins/cargo-binstall@main
|
||||||
|
@ -65,11 +67,13 @@ jobs:
|
||||||
run: mkdir -p target/test-report
|
run: mkdir -p target/test-report
|
||||||
|
|
||||||
- name: Run tests
|
- 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 -- -Zunstable-options --format json --report-time \
|
||||||
|
| tee target/test-report/test-report.json
|
||||||
env:
|
env:
|
||||||
RUSTFLAGS: "-Cinstrument-coverage"
|
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
|
- name: Install markdown-test-report
|
||||||
run: cargo binstall -y markdown-test-report
|
run: cargo binstall -y markdown-test-report
|
||||||
|
|
||||||
|
@ -81,10 +85,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: test-report
|
name: test-report
|
||||||
path: target/test-report/test-report.md
|
path: target/test-report/test-report.md
|
||||||
|
|
||||||
- name: Install grcov
|
- name: Install grcov
|
||||||
run: cargo binstall -y grcov
|
run: cargo binstall -y grcov
|
||||||
|
|
||||||
- name: Generate coverage report
|
- name: Generate coverage report
|
||||||
run: |
|
run: |
|
||||||
grcov \
|
grcov \
|
||||||
|
@ -101,8 +105,8 @@ jobs:
|
||||||
--ignore "*cargo*" \
|
--ignore "*cargo*" \
|
||||||
-t html \
|
-t html \
|
||||||
-o ./target/coverage/html \
|
-o ./target/coverage/html \
|
||||||
target/coverage/prof
|
target/coverage/
|
||||||
|
|
||||||
- name: Upload coverage report
|
- name: Upload coverage report
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue