diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..18a099a --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +kind: pipeline +name: test-on-amd64 + +platform: + arch: amd64 + +steps: +- name: test + image: rust:1.62 + commands: + - cargo build --verbose --all + - cargo test --verbose --all +