From 2bf462728ef54767bd2131de8237502298f5d455 Mon Sep 17 00:00:00 2001 From: Jack Gilcrest Date: Mon, 25 Nov 2024 18:32:28 +0700 Subject: [PATCH] add working dir to action --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1530534..3920678 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,6 +24,7 @@ jobs: toolchain: ${{ matrix.toolchain }} - name: Run Noir tests + working-directory: ./lib run: nargo test format: @@ -35,9 +36,10 @@ jobs: - name: Install Nargo uses: noir-lang/noirup@v0.1.3 with: - toolchain: 0.35.0 + toolchain: 0.36.0 - name: Run formatter + working-directory: ./lib run: nargo fmt --check # This is a job which depends on all test jobs and reports the overall status.