diff --git a/.gitea/workflows/gitea-ci.yaml b/.gitea/workflows/gitea-ci.yaml index 1b5f26e..72c9002 100644 --- a/.gitea/workflows/gitea-ci.yaml +++ b/.gitea/workflows/gitea-ci.yaml @@ -24,19 +24,19 @@ jobs: - run: cargo test --all-features --all-targets --no-fail-fast - run: >- grcov target/debug/profraw - --binary-path ./target/debug/ - --output-types html - --source-dir . - --ignore-not-existing - --ignore "tests/*" - --ignore "src/main.rs" - --excl-start "GRCOV_EXCL_START|mod tests \{" - --excl-stop "GRCOV_EXCL_STOP" - --output-path ./target/debug/coverage/ + --binary-path target/debug/ + --output-types html + --source-dir . + --ignore-not-existing + --ignore "tests/*" + --ignore "src/main.rs" + --excl-start "GRCOV_EXCL_START|mod tests \{" + --excl-stop "GRCOV_EXCL_STOP" + --output-path ./target/debug/coverage/ - run: >- python3 .gitea/scripts/coverage.py - --coverage-file ./target/debug/coverage/coverage.json - --fail-under 100.00 + --coverage-file ./target/debug/coverage/coverage.json + --fail-under 100.00 lint: name: Lint