Skip to content

Commit e3b62c9

Browse files
committed
Add dependencies for pyright
1 parent 9d77efb commit e3b62c9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/code-checks.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,16 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v3
15+
- run: pipx install poetry
1516
- uses: actions/setup-python@v4
1617
with:
1718
python-version: "3.11"
19+
cache: 'poetry'
1820
- uses: pre-commit/[email protected]
1921
- uses: pre-commit-ci/[email protected]
2022
if: always()
23+
- name: Install dependencies for pyright
24+
run: |
25+
poetry install --only main,test
26+
poetry run pip install PyQt6
2127
- uses: jakebailey/pyright-action@v1

0 commit comments

Comments
 (0)