Use only one test thread

Otherwise the builds made by `TestEnv::command` will conflict with each
other. This manifested itself on Windows with

> linking with `link.exe` failed: exit code: 1104
> LINK : fatal error LNK1104: cannot open file '...'
This commit is contained in:
Niklas Mohrin 2025-01-02 23:41:09 +01:00
commit dbab55a2b4
No known key found for this signature in database
GPG key ID: 0ACD89A5C1DEB3EB

View file

@ -25,7 +25,7 @@ jobs:
- name: Build with logging and webpki roots
run: cargo build --features logging,webpki-roots --no-default-features
- name: Run tests
run: cargo test
run: cargo test -- --test-threads 1
clippy:
name: run clippy lints