mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Quote conditions in tests workflow file
This commit is contained in:
parent
50aade8293
commit
14385a1e4f
1 changed files with 2 additions and 2 deletions
4
.github/workflows/tests.yml
vendored
4
.github/workflows/tests.yml
vendored
|
|
@ -61,7 +61,7 @@ jobs:
|
|||
|
||||
- name: Install and configure Poetry
|
||||
uses: snok/install-poetry@v1
|
||||
if: !startswith(matrix.python-version, 'pypy') || matrix.os != 'windows-latest'
|
||||
if: "!startswith(matrix.python-version, 'pypy') || matrix.os != 'windows-latest'"
|
||||
with:
|
||||
version: 1.1.11
|
||||
virtualenvs-create: true
|
||||
|
|
@ -69,7 +69,7 @@ jobs:
|
|||
installer-parallel: true
|
||||
|
||||
- name: Install and configure Poetry (PyPy on Windows)
|
||||
if: startswith(matrix.python-version, 'pypy') && matrix.os == 'windows-latest'
|
||||
if: "startswith(matrix.python-version, 'pypy') && matrix.os == 'windows-latest'"
|
||||
env:
|
||||
POETRY_VERSION: 1.1.11
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue