api testing had the rust tool chain removed

This commit is contained in:
dal 2025-04-29 13:41:40 -06:00
parent 9905f16ed1
commit 09eae9eacb
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
1 changed files with 5 additions and 0 deletions

View File

@ -43,6 +43,11 @@ jobs:
key: ${{ github.repository }}-api-target # Unique key per repository key: ${{ github.repository }}-api-target # Unique key per repository
path: ./api/target # Cache build artifacts 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 - name: Run API Tests
working-directory: ./api # Tests run from the api directory working-directory: ./api # Tests run from the api directory
run: cargo test --workspace # Run tests for all packages in the api workspace run: cargo test --workspace # Run tests for all packages in the api workspace