From 55a0b9fafd501ce3970175ce3a728aa6eca42e02 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Fri, 22 Nov 2019 17:42:16 +1100 Subject: [PATCH] Add github workflow --- .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 0000000000..6542f452e3 --- /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: Run release tests with all features + run: cargo test --release --all --all-features + - name: Check formatting with cargo fmt + run: cargo test --release --all --all-features