From 9fc9e001e9df309665c1ced809822ac9f831f7f1 Mon Sep 17 00:00:00 2001 From: Andre LaBranche Date: Fri, 16 Aug 2019 21:37:53 -0700 Subject: [PATCH] actions? --- .github/workflows/rust.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..fec17ad --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,15 @@ +name: Rust + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose