diff options
author | Cara Salter <cara@devcara.com> | 2022-02-14 10:55:33 -0500 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-02-14 10:57:29 -0500 |
commit | f86d3cea5207f1ae64bff937429150ee38c13baf (patch) | |
tree | 497ed95e97f67b7c09730630aaa1ee3220ee985b | |
parent | 274f2cceabc1b0e2b35e0937473a6497a82d7c98 (diff) | |
download | glitch-ng-f86d3cea5207f1ae64bff937429150ee38c13baf.tar.gz glitch-ng-f86d3cea5207f1ae64bff937429150ee38c13baf.zip |
Add CI
-rw-r--r-- | .drone.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..2e41672 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,10 @@ +kind: pipeline +type: docker +name: default + +steps: + - name: build + image: rust:slim + commands: + - cargo check + - cargo fmt -- --check |