From 76ad146e7e2bb56b3e32ab5f89f32738e7e62c60 Mon Sep 17 00:00:00 2001 From: Lotte Steenbrink Date: Mon, 15 Jun 2020 16:09:31 +0200 Subject: [PATCH] Create rust.yml start simple, only build and run tools --- .github/workflows/rust.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..e4a4ee9 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,24 @@ +name: Rust + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: build tools + working-directory: ./tools + run: cargo build --verbose + - name: test tools + working-directory: ./tools + run: cargo test --verbose