From be9110f413d4e6e100f2c0780e7e487e3212329c Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Tue, 14 Sep 2021 12:03:04 +0200 Subject: [PATCH] separate steps for building and running ut --- .github/workflows/mangata-dev.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mangata-dev.yml b/.github/workflows/mangata-dev.yml index 1fa9a6353829f..a5db258671f74 100644 --- a/.github/workflows/mangata-dev.yml +++ b/.github/workflows/mangata-dev.yml @@ -26,13 +26,15 @@ jobs: - name: Check Cargo version run: | cargo --version - - name: Run cargo check + - name: Build UT uses: actions-rs/cargo@v1 with: toolchain: nightly-2020-10-01 - command: check - - name: Test cargo check + command: build + args: --tests + - name: Run UT uses: actions-rs/cargo@v1 with: toolchain: nightly-2020-10-01 command: test +est