sandwich

A funny programming language written in Rust
git clone https://tilde.team/~karx/sandwich.git
Log | Files | Refs | README | LICENSE

commit 06c78ddf4dd853dbf04e69bc7451dbd2fdea7aa6
parent 154cac779a99d6b7f5f5d874a52fa6ebdc888c7f
Author: ~karx <karx@tilde.team>
Date:   Sun,  7 Feb 2021 19:48:03 +0000

Add drone configuration

Diffstat:
MREADME.md | 2+-
Adrone.yml | 23+++++++++++++++++++++++
2 files changed, 24 insertions(+), 1 deletion(-)

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