From bd5d4c03c511ba937a4e386bf8104f3fe13b2ee6 Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Sun, 6 Mar 2022 17:39:49 +0100 Subject: [PATCH] reorder CI --- .github/workflows/ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7758bc..b3c23eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,13 +14,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Build - run: cargo build --verbose - - name: Run clippy -D clippy::all - run: cargo clippy --verbose -- -D clippy::all - name: Check format - run: cargo xtask check-fmt - - name: Run tests + run: cargo build --verbose + - name: Check clippy + run: cargo clippy --verbose -- -D clippy::all + - name: Run unit tests run: cargo test --verbose --all - name: Run client integration tests run: cargo xtask test-js