Try fixing acceptance step in CI.

This commit is contained in:
KtorZ 2023-01-06 13:20:27 +01:00
parent 1a29ee3b72
commit 7e8e8fd4a7
No known key found for this signature in database
GPG Key ID: 33173CB6F77F4277
1 changed files with 3 additions and 5 deletions

View File

@ -11,18 +11,16 @@ env:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Build - name: Build
run: cargo build --verbose --workspace run: cargo build --verbose --workspace
- name: Run tests - name: Run unit tests
run: cargo test --verbose --workspace run: cargo test --verbose --workspace
- name: Acceptance Tests - name: Run acceptance tests
working-directory: examples/acceptance_tests working-directory: examples/acceptance_tests
run: ./run-all run: find . -maxdepth 1 -mindepth 1 -type d -exec ./run {} \;
- name: Lint - name: Lint
run: cargo fmt --all -- --check run: cargo fmt --all -- --check
- name: Clippy - name: Clippy