fix(ci): run all workspace tests

Without `--workspace`, all generate tests were silently skipped.
This commit is contained in:
Will Lillis 2026-08-20 00:54:19 -04:00
parent 067f85e5a2
commit 03ae6710cd

View file

@ -293,7 +293,7 @@ jobs:
- name: Run main tests
if: inputs.run-test && !matrix.no-run
run: cargo test --target='${{ matrix.target }}' --features='${{ (matrix.run-wasm-test || !inputs.run-test) && matrix.features || '' }}'
run: cargo test --workspace --target='${{ matrix.target }}' --features='${{ (matrix.run-wasm-test || !inputs.run-test) && matrix.features || '' }}'
- name: Run Wasm tests
if: inputs.run-test && !matrix.no-run && contains(matrix.features, 'wasm') && matrix.run-wasm-test