Skip to content

Commit

Permalink
Try to make pyright matrix work properly
Browse files Browse the repository at this point in the history
  • Loading branch information
pydsigner committed Dec 20, 2023
1 parent ca7cd80 commit 8986fd7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-cq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ['3.10', '3.11', '3.12']
#python-version: ['3.10', '3.11', '3.12']
python-version: ['3.12']
pyright-version: ['1.1.337', '1.1.338', '1.1.339', '1.1.340', '1.1.341']

steps:
Expand All @@ -28,7 +29,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[cq] pyright==${{ matrix.pyright-version }}
PYRIGHT_PYTHON_FORCE_VERSION=${{ matrix.pyright-version }} python -m pip install .[cq] pyright==${{ matrix.pyright-version }}
- name: Lint with pylint
run: pylint src/anchovy
- name: Typecheck with pyright
Expand Down

0 comments on commit 8986fd7

Please sign in to comment.