From 470e331b2692eb2b9f21671e93b98f60c25262f3 Mon Sep 17 00:00:00 2001 From: KtorZ Date: Fri, 6 Jan 2023 06:55:34 +0100 Subject: [PATCH] Include acceptance tests in the CI workflow --- .github/workflows/rust.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5319c9e2..ae2cee75 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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