Skip to content
Merged
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
RUST_MANIFEST := cmd/devcontainer/Cargo.toml
RELEASE_BINARY := ./cmd/devcontainer/target/release/devcontainer
CARGO_LLVM_COV ?= cargo llvm-cov
COVERAGE_LINE_THRESHOLD := 95
ACTIONLINT := uv tool run --from actionlint-py actionlint
SHELLCHECK := uv tool run --from shellcheck-py shellcheck
SHELLCHECK_FILES := $(shell git ls-files -- '*.sh' '.githooks/pre-commit' ':(exclude)upstream/**' ':(exclude)spec/**' ':(exclude)target/**' ':(exclude)node_modules/**')
Expand All @@ -64,7 +63,7 @@ cargo-deny-check:
cargo deny --manifest-path $(RUST_MANIFEST) check -A license-not-encountered

rust-coverage:
$(CARGO_LLVM_COV) --manifest-path $(RUST_MANIFEST) --locked --all-features --workspace --fail-under-lines $(COVERAGE_LINE_THRESHOLD)
$(CARGO_LLVM_COV) --manifest-path $(RUST_MANIFEST) --locked --all-features --workspace --show-missing-lines --fail-uncovered-lines 0

actionlint-check:
$(ACTIONLINT) .github/workflows/*.yml
Expand Down
Loading
Loading