diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-02-25 11:06:31 -0800 |
---|---|---|
committer | Ondřej Čertík <ondrej@certik.us> | 2020-02-25 11:06:31 -0800 |
commit | 1e022ab28087ac52c2318c5030d5a74bd736ac8e (patch) | |
tree | 68d74fc857d83e4aa864bdd2e28a0f88a638016b /.github | |
parent | 2fffd79862b5c0bf2f6d02bb2dee1f25d63b22bc (diff) | |
download | fpm-1e022ab28087ac52c2318c5030d5a74bd736ac8e.tar.gz fpm-1e022ab28087ac52c2318c5030d5a74bd736ac8e.zip |
CI: Use "||" instead of "or"
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 37ca589..3f6d81a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -28,7 +28,7 @@ jobs: uses: actions/checkout@v1 - name: Install Haskell Linux / macOS - if: contains(matrix.os, 'ubuntu') or contains(matrix.os, 'macos') + if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos') uses: mstksg/setup-stack@v1 - name: Install Haskell Windows |