From d80865f18c8a42c559449983a30e7dd4256e8f0f Mon Sep 17 00:00:00 2001 From: Mark Liffiton Date: Wed, 19 Jun 2024 10:01:24 -0500 Subject: [PATCH] Update python-checks.yml: correct python version comparison --- .github/workflows/python-checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-checks.yml b/.github/workflows/python-checks.yml index 2d0a959..2af4ba2 100644 --- a/.github/workflows/python-checks.yml +++ b/.github/workflows/python-checks.yml @@ -10,7 +10,7 @@ permissions: contents: read jobs: - build: + test: runs-on: ubuntu-latest strategy: @@ -29,7 +29,7 @@ jobs: python -m pip install --upgrade pip wheel pip install -e .[test] - name: Type check with mypy - if: ${{ matrix.python-version >= 3.10 }} + if: ${{ matrix.python-version != 3.9 }} run: | mypy - name: Test with pytest