Files
kasperhermansen-blog/mise.toml
kjuulh 97986b1bef
Some checks failed
continuous-integration/drone/push Build is failing
feat: with stuff
2025-07-31 11:43:39 +02:00

20 lines
320 B
TOML

[tasks."ci:build"]
dir = "./ci"
run = "cargo build"
[tasks."ci:run"]
run = "./target/debug/ci"
[tasks."ci:main"]
depends = ["ci:build"]
run = "mise run ci:run main"
[tasks."ci:pr"]
depends = ["ci:build"]
run = "mise run ci:run pr"
[tasks."dev"]
env = { RUN = "local" }
depends = ["ci:build"]
run = "mise run ci:run"