From 4278c9f3c3d4626ef5861221982d46fefa4e362d Mon Sep 17 00:00:00 2001 From: Raamakrishnan A Date: Sun, 2 Feb 2020 14:14:09 +0530 Subject: [PATCH] Add basic github actions in rust.yml --- rust.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 rust.yml diff --git a/rust.yml b/rust.yml new file mode 100644 index 0000000..312cbfd --- /dev/null +++ b/rust.yml @@ -0,0 +1,15 @@ +name: Rust + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose