mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Fix condition
This commit is contained in:
parent
b1e66a993e
commit
352ae1febb
1 changed files with 1 additions and 1 deletions
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue