File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3333# Documentation
3434docs :
3535 - docs/**
36- - **/*.md
36+ - " **/*.md"
3737 - .github/**/*.md
3838
3939# CI/CD
@@ -65,13 +65,13 @@ security:
6565# Testing
6666testing :
6767 - tests/**
68- - **/*_test.rs
69- - **/tests/**
68+ - " **/*_test.rs"
69+ - " **/tests/**"
7070
7171# Dependencies
7272dependencies :
7373 - Cargo.toml
7474 - Cargo.lock
7575 - package.json
7676 - requirements.txt
77- - **/Cargo.toml
77+ - " **/Cargo.toml"
Original file line number Diff line number Diff line change 3737
3838 - name : Generate coverage summary
3939 run : |
40- cargo llvm-cov --all-features --workspace --summary
41-
42- - name : Check coverage threshold
43- run : |
44- COVERAGE=$(cargo llvm-cov --all-features --workspace --summary --output-format=json | jq '.regions.covered')
45- echo "Coverage: ${COVERAGE}%"
40+ cargo llvm-cov --all-features --workspace --report json --output-path coverage.json
41+ echo "Coverage report generated"
You can’t perform that action at this time.
0 commit comments