commit 146863f7cb3b7a7a35482ba7a9a4298101961084 parent e69e4526aae66ea89f607fa53e3f7fadbf5d6ee5 Author: Stefan Koch <programming@stefan-koch.name> Date: Sat, 14 Sep 2019 17:12:17 +0200 add a simple TOML configuration to project Diffstat:
A | .cinderella.toml | | | 10 | ++++++++++ |
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/.cinderella.toml b/.cinderella.toml @@ -0,0 +1,10 @@ +[test] +commands = [ + "cargo test", +] + +[build-release] +commands = [ + "cargo build --release", + # copy/upload the file somewhere +]