From ad4f3da29c33e3c946bdd7eea04e3216e3496192 Mon Sep 17 00:00:00 2001 From: Tom Flanagan Date: Sun, 5 Nov 2023 00:06:00 -0700 Subject: [PATCH] fix yaml --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1c670e..0426ab5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,13 +47,13 @@ jobs: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=80 --statistics - name: "Build and test (Old)" - if: matrix.python != "3.12" + if: ${{ matrix.python != "3.12" }} run: | python setup/setup.py sdist --formats=zip pip install dist/dominate*.zip pytest - name: "Build and test (Python 3.12+)" - if: matrix.python == "3.12" + if: ${{ matrix.python == "3.12" }} run: | # lolz theres still no correct way to make a python package false