From 34ec1149d71bf209f3739743d01e4768a9b2bbd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Fri, 22 Sep 2023 09:54:15 +0200 Subject: [PATCH] nm-wallet-nightly-build: reenable steps --- .../workflows/nym-wallet-nightly-build.yml | 49 +++++++++---------- 1 file changed, 24 insertions(+), 25 deletions(-) diff --git a/.github/workflows/nym-wallet-nightly-build.yml b/.github/workflows/nym-wallet-nightly-build.yml index 91dbdf4c90..41f1a84151 100644 --- a/.github/workflows/nym-wallet-nightly-build.yml +++ b/.github/workflows/nym-wallet-nightly-build.yml @@ -40,31 +40,30 @@ jobs: command: fmt args: --all -- --check - # - name: Build all binaries - # uses: actions-rs/cargo@v1 - # with: - # command: build - # args: --workspace - # - # - name: Run all tests - # uses: actions-rs/cargo@v1 - # with: - # command: test - # args: --workspace - # - # - name: Annotate with clippy warnings - # uses: actions-rs/clippy-check@v1 - # continue-on-error: true - # with: - # token: ${{ secrets.GITHUB_TOKEN }} - # args: --workspace - # - # - name: Run clippy - # uses: actions-rs/cargo@v1 - # if: ${{ matrix.rust != 'nightly' }} - # with: - # command: clippy - # args: --workspace --all-targets -- -D warnings + - name: Build + uses: actions-rs/cargo@v1 + with: + command: build + args: --workspace + + - name: Unit tests + uses: actions-rs/cargo@v1 + with: + command: test + args: --workspace + + - name: Annotate with clippy warnings + uses: actions-rs/clippy-check@v1 + continue-on-error: true + with: + token: ${{ secrets.GITHUB_TOKEN }} + args: --workspace + + - name: Clippy + uses: actions-rs/cargo@v1 + with: + command: clippy + args: --workspace --all-targets -- -D warnings # notification: # needs: build