From 7e8e8fd4a7e3c510b47b2bc9087c85ffd29035fa Mon Sep 17 00:00:00 2001 From: KtorZ Date: Fri, 6 Jan 2023 13:20:27 +0100 Subject: [PATCH] Try fixing acceptance step in CI. --- .github/workflows/rust.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 838a74cf..9451b68a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -11,18 +11,16 @@ env: jobs: build: - runs-on: ubuntu-latest - steps: - uses: actions/checkout@v3 - name: Build run: cargo build --verbose --workspace - - name: Run tests + - name: Run unit tests run: cargo test --verbose --workspace - - name: Acceptance Tests + - name: Run acceptance tests working-directory: examples/acceptance_tests - run: ./run-all + run: find . -maxdepth 1 -mindepth 1 -type d -exec ./run {} \; - name: Lint run: cargo fmt --all -- --check - name: Clippy