mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 05:14:33 -05:00
* fix: intoducing cargo all-features clippy * fix: change check to clippy for better diagnostics * chore: build is redundant * fix: lint task * feat: speed up tests by 2x with cargo-nextest * fix: re-add flags * fix: router example build process * fix: correct clippy arguments * fix: adapt examples makefile to new tools * fix(CI): add cargo-all-features part of CI dep * fix: just warn if there is no tests * fix(CI): add clippy and rustfmt components * fix: nextest in examples * fix: clippy should not run on empty set of features in examples (quickfix) * fix: pin cargo-all-features installation to a branch * fix: nextest --no-tests=warn? * fix: do not use built-in cargo-make workflows * fix: remove --all-targets * fix: do not run tests in parallel in certain examples * fix: disable nextest for examples * fix: properly override the make task * chore: run tests with no-deps * fix: hackernews_islands_axum * fix(CI): properly use --no-deps * fix(CI): --no-deps is not supported in tests * fix(CI): run doctests separately due to stable rust limitation in nextest * fix(examples): makefile lint recursion * fix(CI): run tests correctly * fix: remove unused clear in test makefile * fix: --no-deps positional arg in clippy * fix: run doctests for all-features * fix: running cargo-all-features over doctests * fix: improve playwright makefile
40 lines
781 B
TOML
40 lines
781 B
TOML
############
|
|
# A make file for cargo-make, please install it with:
|
|
# cargo install --force cargo-make
|
|
############
|
|
|
|
[env]
|
|
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
|
|
|
|
[tasks.check-stable]
|
|
workspace = false
|
|
clear = true
|
|
dependencies = [
|
|
{ name = "lint", path = "examples/counter_without_macros" },
|
|
{ name = "lint", path = "examples/counters_stable" },
|
|
]
|
|
|
|
[tasks.ci-examples]
|
|
workspace = false
|
|
cwd = "examples"
|
|
command = "cargo"
|
|
args = ["make", "ci-clean"]
|
|
|
|
[tasks.check-examples]
|
|
workspace = false
|
|
cwd = "examples"
|
|
command = "cargo"
|
|
args = ["make", "check-clean"]
|
|
|
|
[tasks.build-examples]
|
|
workspace = false
|
|
cwd = "examples"
|
|
command = "cargo"
|
|
args = ["make", "build-clean"]
|
|
|
|
[tasks.clean-examples]
|
|
workspace = false
|
|
cwd = "examples"
|
|
command = "cargo"
|
|
args = ["make", "clean"]
|