From 7564e532bbc52fabb9236e090992a5c177cd3f57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Dani=C5=82o?= Date: Mon, 7 Oct 2019 13:28:34 +0200 Subject: [PATCH] Update rust.yml Original commit: https://github.com/enso-org/ide/commit/62c39f00a85bf856cee5efb43b489a43dda8bdcb --- gui/.github/workflows/rust.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 gui/.github/workflows/rust.yml diff --git a/gui/.github/workflows/rust.yml b/gui/.github/workflows/rust.yml new file mode 100644 index 0000000000..fec17ad2aa --- /dev/null +++ b/gui/.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