diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-01-14 14:18:47 -0700 |
---|---|---|
committer | Ondřej Čertík <ondrej@certik.us> | 2020-01-14 14:18:47 -0700 |
commit | a57157068dc9fcb1d37845479e45857d18bbfa80 (patch) | |
tree | 917e2a3962f4a533464f510352be81385b9d764f | |
parent | 8539efaf67059ddef23b6221b3fe4fa5bc185004 (diff) | |
download | fpm-a57157068dc9fcb1d37845479e45857d18bbfa80.tar.gz fpm-a57157068dc9fcb1d37845479e45857d18bbfa80.zip |
Run tests in serial
This fixes an issue on macOS where sometimes the CI seems to kill `fpm`,
probably due to having too many parallel processes at the same time.
-rw-r--r-- | .github/workflows/CI.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3fc511f..a27a108 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -64,7 +64,7 @@ jobs: - name: Run tests run: | - cargo test --verbose + cargo test --verbose -j1 # TODO: integrate these with `cargo test` above - name: Run manual tests |