This commit is contained in:
rvcas 2023-01-18 14:30:53 -05:00 committed by Lucas
parent f975c345c9
commit be6327cf59
1 changed files with 2 additions and 2 deletions

View File

@ -20,9 +20,9 @@ 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: for scenario in $(find . -maxdepth 1 -mindepth 1 -type d); "./run" $scenario; run: bash run-all;
shell: bash shell: bash
- name: Lint - name: Format
run: cargo fmt --all -- --check run: cargo fmt --all -- --check
- name: Clippy - name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings run: cargo clippy --all-targets --all-features -- -D warnings