Fix CI workflow not erroring on acceptance test failure.

This commit is contained in:
KtorZ 2023-01-17 17:28:25 +01:00 committed by Lucas
parent d7e4aef4c5
commit 439a54d9f1
1 changed files with 2 additions and 1 deletions

View File

@ -20,7 +20,8 @@ jobs:
run: cargo test --verbose --workspace run: cargo test --verbose --workspace
- name: Run acceptance tests - name: Run acceptance tests
working-directory: examples/acceptance_tests working-directory: examples/acceptance_tests
run: find . -maxdepth 1 -mindepth 1 -type d -exec ./run {} \; run: for scenario in $(find . -maxdepth 1 -mindepth 1 -type d); ./run $scenario;
shell: bash
- name: Lint - name: Lint
run: cargo fmt --all -- --check run: cargo fmt --all -- --check
- name: Clippy - name: Clippy