Files
kasperhermansen-blog/mise.toml
kjuulh d12c4539a3
Some checks failed
continuous-integration/drone/push Build encountered an error
feat: expand with notunnel
Signed-off-by: kjuulh <contact@kjuulh.io>
2026-01-20 22:14:39 +01:00

23 lines
343 B
TOML

[env]
_.file = ".env"
[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"