diff --git a/README.md b/README.md index 806236f..07f3d36 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Read [this guide](https://git-send-email.io) for more information. - [x] Better documentation - [ ] Ability to explicitly print math output and assign math output to variables - [x] Add support for comments (should be pretty easy) -- [ ] Unit testing and CI/CD +- [x] Unit testing and CI/CD ## License diff --git a/drone.yml b/drone.yml new file mode 100644 index 0000000..6c73e30 --- /dev/null +++ b/drone.yml @@ -0,0 +1,22 @@ +kind: pipeline +type: docker +name: rust-latest + +steps: +- name: test + image: rust:1.49.0 + commands: + - cargo build --verbose + - cargo test --verbose + +--- +kind: pipeline +type: docker +name: rust-nightly + +steps: +- name: test + image: rustlang/rust:nightly + commands: + - cargo build --verbose + - cargo test --verbose \ No newline at end of file