diff options
| author | Mel <einebeere@gmail.com> | 2024-12-29 16:35:28 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2024-12-29 16:35:28 +0100 |
| commit | 54b021e352c6e8be605f4d223916ebf97a59f9a4 (patch) | |
| tree | b89f2298954bc6edac5673ff4dad70fdf9114201 /Taskfile.yml | |
| parent | afbebf4b5b0f4e894d5dcf57b710bdb3ea2b3ded (diff) | |
| download | specimen-54b021e352c6e8be605f4d223916ebf97a59f9a4.tar.zst specimen-54b021e352c6e8be605f4d223916ebf97a59f9a4.zip | |
Add Taskfile for some useful command shortcuts
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'Taskfile.yml')
| -rw-r--r-- | Taskfile.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Taskfile.yml b/Taskfile.yml new file mode 100644 index 0000000..ac379ae --- /dev/null +++ b/Taskfile.yml @@ -0,0 +1,15 @@ +version: 3 + +tasks: + build: + desc: "Build specimen application binary." + dir: application + cmds: + - go build -o build/specimen git.rnrd.eu/specimen/cmd/specimen + + run: + desc: "Run specimen application binary." + dir: application + deps: [build] + cmds: + - build/specimen |
