Fix condition

This commit is contained in:
evgfilim1 2022-08-20 19:05:06 +05:00
parent b1e66a993e
commit 352ae1febb
No known key found for this signature in database
GPG key ID: D9F91B9DC64683A2

View file

@ -97,7 +97,7 @@ jobs:
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
env:
# uvloop on macOS on PyPy doesn't compile
INSTALL_FAST: ${{ matrix.os == 'macos-latest' && startswith(matrix.python-version, 'pypy') }}
INSTALL_FAST: ${{ matrix.os != 'macos-latest' || !startswith(matrix.python-version, 'pypy') }}
run: |
flags=""
[[ "$INSTALL_FAST" == "true" ]] && flags="$flags -E fast"