Skip to content

Commit 66d224f

Browse files
authored
Merge pull request #15 from CipherOcto/next
fix CI
2 parents bfeae39 + 77c091b commit 66d224f

2 files changed

Lines changed: 6 additions & 10 deletions

File tree

.github/labeler.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ cli:
3333
# Documentation
3434
docs:
3535
- docs/**
36-
- **/*.md
36+
- "**/*.md"
3737
- .github/**/*.md
3838

3939
# CI/CD
@@ -65,13 +65,13 @@ security:
6565
# Testing
6666
testing:
6767
- tests/**
68-
- **/*_test.rs
69-
- **/tests/**
68+
- "**/*_test.rs"
69+
- "**/tests/**"
7070

7171
# Dependencies
7272
dependencies:
7373
- Cargo.toml
7474
- Cargo.lock
7575
- package.json
7676
- requirements.txt
77-
- **/Cargo.toml
77+
- "**/Cargo.toml"

.github/workflows/coverage.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,5 @@ jobs:
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"

0 commit comments

Comments
 (0)