This commit is contained in:
2023-10-20 23:31:16 +09:00
parent 430b5977d8
commit a9457552ff
87 changed files with 9549 additions and 1 deletions

14
Makefile.toml Normal file
View File

@ -0,0 +1,14 @@
[tasks.BUILD]
description = "Build hoge"
script = ['''
#!/usr/bin/env bash
echo "build ${@}..."
''']
[tasks.TEST]
description = "Test hoge"
script = ['''
#!/usr/bin/env python3
print("test ...")
''']
dependencies = ["BUILD"]