aboutsummaryrefslogtreecommitdiff
path: root/Makefile.toml
blob: 64fd91d60d30d3689e8c79ca8e38f14a50b101b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[tasks.fmt]
args = ["fmt"]
command = "cargo"
toolchain = "nightly"

[tasks.check]
args = ["check", "--all-features"]
command = "cargo"

[tasks.clippy]
args = ["clippy"]
command = "cargo"

[tasks.checkf]
dependencies = ["fmt", "check"]

[tasks.checkfc]
dependencies = ["fmt", "check", "clippy"]

[tasks.run]
args = ["run"]
command = "cargo"
dependencies = ["checkfc"]

[tasks.docker-build]
args = ["build", "-t", "fuwn/september:latest", "."]
command = "docker"
dependencies = ["checkfc"]