From d67b42c7f277c336a9f327eae5ef3f5ce72b1d41 Mon Sep 17 00:00:00 2001 From: fryorcraken Date: Tue, 21 Oct 2025 10:47:36 +1100 Subject: [PATCH] add nimble check directly on the waku library --- .github/workflows/test-nimble-install.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test-nimble-install.yml b/.github/workflows/test-nimble-install.yml index 0ab0fc569..0763f8564 100644 --- a/.github/workflows/test-nimble-install.yml +++ b/.github/workflows/test-nimble-install.yml @@ -29,14 +29,13 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Display Nimble version - run: | - nimble --version + run: nimble --version - - name: Display example.nimble - run: cat examples/nimble/example.nimble + - name: Run nimble install on waku + run: nimble --verbose install - - name: Display waku.nimble - run: head -n40 waku.nimble + - name: Run nimble check on waku + run: nimble check -l - name: Build example project working-directory: examples/nimble