Skip to content

Commit

Permalink
add pyright to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Nfsaavedra committed Mar 26, 2024
1 parent 9683616 commit 41b00da
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,18 @@ jobs:
uses: psf/black@stable
with:
options: "--check --verbose"
version: "23.3.0"
version: "23.3.0"

- name: Install Python 3
uses: actions/setup-python@v4
with:
python-version: 3.10.5

- name: Install dependencies pyright
run: |
python -m pip install --upgrade pip
pip install pyright
python -m pip install -e .
- name: Run pyright
run: pyright

0 comments on commit 41b00da

Please sign in to comment.