From 09eae9eacb4cfc5079e7eb5fd53b5c60d62c29ee Mon Sep 17 00:00:00 2001 From: dal Date: Tue, 29 Apr 2025 13:41:40 -0600 Subject: [PATCH] api testing had the rust tool chain removed --- .github/workflows/api-testing.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/api-testing.yml b/.github/workflows/api-testing.yml index 84d970a04..9ee4aff8c 100644 --- a/.github/workflows/api-testing.yml +++ b/.github/workflows/api-testing.yml @@ -43,6 +43,11 @@ jobs: key: ${{ github.repository }}-api-target # Unique key per repository path: ./api/target # Cache build artifacts + - name: Set up Rust toolchain + uses: actions-rust-lang/setup-rust-toolchain@v1 + with: + toolchain: stable # Or specify a version + - name: Run API Tests working-directory: ./api # Tests run from the api directory run: cargo test --workspace # Run tests for all packages in the api workspace