Skip to content

Commit

Permalink
bool syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
zmoon committed Aug 1, 2023
1 parent 868b08f commit d8806dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v3

- name: Set up Python (micromamba) [>3.6, no AQS]
if: matrix.python-version != '3.6' && matrix.aqs == false
if: matrix.python-version != '3.6' && !matrix.aqs
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment-dev.yml
Expand All @@ -40,7 +40,7 @@ jobs:
python=${{ matrix.python-version }}
- name: Set up Python (micromamba) [>3.6, AQS]
if: matrix.python-version != '3.6' && matrix.aqs == true
if: matrix.python-version != '3.6' && matrix.aqs
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment-dev.yml
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
pytest -n auto -v -k with_pytspack
- name: Test AQS
if: matrix.aqs == true
if: matrix.aqs
run: |
pytest -n auto -v -k aqs
Expand Down

0 comments on commit d8806dc

Please sign in to comment.