mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
15 lines
298 B
TOML
15 lines
298 B
TOML
extend = [
|
|
{ path = "./check.toml" },
|
|
{ path = "./lint.toml" },
|
|
{ path = "./test.toml" },
|
|
]
|
|
|
|
[env]
|
|
RUSTFLAGS = ""
|
|
LEPTOS_OUTPUT_NAME = "ci" # allows examples to check/build without cargo-leptos
|
|
|
|
[env.github-actions]
|
|
RUSTFLAGS = "-D warnings"
|
|
|
|
[tasks.ci]
|
|
dependencies = ["lint", "test"]
|