1
0
bot/Makefile.toml

15 lines
226 B
Makefile
Raw Normal View History

2024-02-16 07:16:22 +00:00
[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"]