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