diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9451b68a..7711ec84 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -20,7 +20,8 @@ jobs: run: cargo test --verbose --workspace - name: Run 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 run: cargo fmt --all -- --check - name: Clippy