diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-01-14 09:05:19 -0700 |
---|---|---|
committer | Ondřej Čertík <ondrej@certik.us> | 2020-01-14 09:05:19 -0700 |
commit | 570c47cca18fcf58acbcb4279824c133afa063e7 (patch) | |
tree | bddb2c30c98cee330f58b139ef32d183f79427a1 /.github | |
parent | 8d948b6689a8b218ff3c791c558285edbd30c8a6 (diff) | |
download | fpm-570c47cca18fcf58acbcb4279824c133afa063e7.tar.gz fpm-570c47cca18fcf58acbcb4279824c133afa063e7.zip |
Rewrite the condition
Diffstat (limited to '.github')
-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 721dd78..a3678a1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -67,7 +67,7 @@ jobs: # TODO: integrate these with `cargo test` above - name: Run manual tests - if: ! contains(matrix.os, 'windows') + if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos') run: | cargo run -- --help ./run_tests.sh |