diff options
Diffstat (limited to 'Makefile.toml')
| -rw-r--r-- | Makefile.toml | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/Makefile.toml b/Makefile.toml deleted file mode 100644 index 64fd91d..0000000 --- a/Makefile.toml +++ /dev/null @@ -1,29 +0,0 @@ -[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"] - |