Try fixing acceptance step in CI.
This commit is contained in:
parent
1a29ee3b72
commit
7e8e8fd4a7
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue