Add drone configuration

This commit is contained in:
~karx 2021-02-07 19:48:03 +00:00
parent 154cac779a
commit 06c78ddf4d
2 changed files with 23 additions and 1 deletions

View File

@ -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

22
drone.yml Normal file
View File

@ -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