15 lines
226 B
TOML
15 lines
226 B
TOML
[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"]
|