Skip to content

Commit

Permalink
chore: run strict cargo make by default
Browse files Browse the repository at this point in the history
  • Loading branch information
maximmaxim345 committed Feb 2, 2025
1 parent 0415f74 commit 33cd572
Showing 1 changed file with 8 additions and 24 deletions.
32 changes: 8 additions & 24 deletions Makefile.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[env]
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true

[tasks.verify-strict]
description = "Run all verification tasks with strict warning settings"
[tasks.verify]
description = "Run most verification tasks"
workspace = false
dependencies = [
"run-all-tests",
"run-tests",
"lint-strict",
"docs-strict",
"spell-check",
Expand All @@ -14,13 +14,13 @@ dependencies = [
"deny",
]

[tasks.verify]
description = "Run most verification tasks"
[tasks.verify-all]
description = "Run all verification tasks"
workspace = false
dependencies = [
"run-tests",
"lint",
"docs",
"run-all-tests",
"lint-strict",
"docs-strict",
"spell-check",
"verify-doc-tests",
"verify-formatting",
Expand Down Expand Up @@ -48,22 +48,6 @@ args = [
]
install_crate = "cargo-nextest"

[tasks.lint]
workspace = false
command = "cargo"
args = ["clippy", "--workspace", "--tests", "--benches", "--all-features"]

[tasks.docs]
workspace = false
command = "cargo"
args = [
"doc",
"--workspace",
"--no-deps",
"--all-features",
"--document-private-items",
]

[tasks.deny]
workspace = false
command = "cargo"
Expand Down

0 comments on commit 33cd572

Please sign in to comment.