mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2025-12-06 03:36:42 +01:00
44 lines
833 B
TOML
44 lines
833 B
TOML
default_job = "check-all"
|
|
|
|
env.CARGO_TERM_COLOR = "always"
|
|
|
|
[keybindings]
|
|
c = "job:check"
|
|
d = "job:doc-open"
|
|
t = "job:test"
|
|
n = "job:nextest"
|
|
l = "job:clippy"
|
|
|
|
[jobs]
|
|
|
|
[jobs.check]
|
|
command = ["cargo", "check"]
|
|
need_stdout = false
|
|
watch = ["core","dsl","editor","input","output","proc","tengri","tui"]
|
|
|
|
[jobs.clippy-all]
|
|
command = ["cargo", "clippy"]
|
|
need_stdout = false
|
|
watch = ["tek", "deps"]
|
|
|
|
[jobs.test]
|
|
command = ["cargo", "test"]
|
|
need_stdout = true
|
|
watch = ["tek", "deps"]
|
|
|
|
[jobs.doc]
|
|
command = ["cargo", "doc", "--no-deps"]
|
|
need_stdout = false
|
|
|
|
[jobs.doc-open]
|
|
command = ["cargo", "doc", "--no-deps", "--open"]
|
|
need_stdout = false
|
|
on_success = "back" # so that we don't open the browser at each change
|
|
|
|
[skin]
|
|
status_fg = 251
|
|
status_bg = 200
|
|
key_fg = 11
|
|
status_key_fg = 11
|
|
project_name_badge_fg = 11
|
|
project_name_badge_bg = 69
|