Skip to content

Commit

Permalink
Update pyright again..
Browse files Browse the repository at this point in the history
  • Loading branch information
OseSem committed Apr 24, 2024
1 parent 2273f9d commit 4a0d2fa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
jobs:
pre-commit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/type-check.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,25 @@
name: type-checking
name: pyright

on:
push:

jobs:
check_typing:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- run: pipx install poetry

- uses: actions/setup-python@v4
with:
cache: 'poetry'
- run: poetry install
- run: echo "$(poetry env info --path)/bin" >> $GITHUB_PATH

- uses: jakebailey/pyright-action@v2
with:
pylance-version: latest-release

0 comments on commit 4a0d2fa

Please sign in to comment.