Include acceptance tests in the CI workflow

This commit is contained in:
KtorZ 2023-01-06 06:55:34 +01:00
parent 4b34617466
commit 470e331b26
No known key found for this signature in database
GPG Key ID: 33173CB6F77F4277
1 changed files with 3 additions and 0 deletions

View File

@ -20,6 +20,9 @@ jobs:
run: cargo build --verbose --workspace
- name: Run tests
run: cargo test --verbose --workspace
- name: Acceptance Tests
working-directory: examples/acceptance_tests
run: run-all
- name: Lint
run: cargo fmt --all -- --check
- name: Clippy