We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c105961 commit 984e893Copy full SHA for 984e893
.github/workflows/test.yml
@@ -21,9 +21,10 @@ jobs:
21
run: rustup target add x86_64-unknown-linux-musl
22
- name: Build
23
run: cargo build --target=x86_64-unknown-linux-musl --verbose
24
- - name: Run tests
25
- # for some reason tests fail when running in parallel
26
- run: cargo test --target=x86_64-unknown-linux-musl --verbose -- --include-ignored --show-output
27
- #--test-threads 1
+ - name: Run host tests
+ run: cargo test --target=x86_64-unknown-linux-musl --verbose -- --show-output
+ # container tests cannot run in parallel
+ - name: Run container tests
28
+ run: cargo test --target=x86_64-unknown-linux-musl --verbose -- --ignored --show-output --test-threads 1
29
- name: Run clippy
30
run: cargo clippy --verbose
0 commit comments