diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..04a9ddb --- /dev/null +++ b/.drone.yml @@ -0,0 +1,25 @@ +workspace: + base: /code + path: src + +pipeline: + release: + image: rust:latest + commands: + - cargo build --release + when: + event: tag + + test: + commands: + - cargo test + when: + branch: master + + gitea_release: + image: plugins/gitea-release + secrets: [ gitea_token ] + base_url: https://git.schneider-hosting.de/ + files: target/release/stopwatch + when: + event: tag diff --git a/README.md b/README.md new file mode 100644 index 0000000..63e03a5 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# stopwatch + +A very simple Stopwatch for the command line + +