Skip to content

Commit

Permalink
Try to make yml valid.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Jun 15, 2022
1 parent 81c0033 commit f62be02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
pip install -U setuptools wheel twine cffi
- name: Build zope.container 3.11.0-beta.3
if: startsWith(matrix.python-version, '3.11.0-beta.3')
if: ${{ startsWith(matrix.python-version, '3.11.0-beta.3') }}
run: |
# Next, build the wheel *in place*. This helps ccache, and also lets us cache the configure
# output (pip install uses a random temporary directory, making this difficult).
Expand All @@ -156,7 +156,7 @@ jobs:
pip install -U 'faulthandler; python_version == "2.7" and platform_python_implementation == "CPython"'
pip install --pre .[test]
- name: Build zope.container
if: !startsWith(matrix.python-version, '3.11.0-beta.3')
if: ${{ !startsWith(matrix.python-version, '3.11.0-beta.3') }}
run: |
# Next, build the wheel *in place*. This helps ccache, and also lets us cache the configure
# output (pip install uses a random temporary directory, making this difficult).
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
unzip -n dist/zope.container-*whl -d src
pip install --pre -U -e .[test]
- name: Install zope.container
if: !startsWith(matrix.python-version, '3.11.0-beta.3')
if: ${{ !startsWith(matrix.python-version, '3.11.0-beta.3') }}
run: |
pip install -U wheel setuptools
pip install -U coverage
Expand Down

0 comments on commit f62be02

Please sign in to comment.