Fix CI workflow not erroring on acceptance test failure.
This commit is contained in:
parent
d7e4aef4c5
commit
439a54d9f1
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue