Skip to content

Commit

Permalink
Add pyright test to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
lovetox committed Apr 27, 2024
1 parent 32be101 commit 028ccd2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pythonTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,23 @@ jobs:
- name: Test with pytest
run: |
pytest
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13-dev"]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install Dependencies
run: |
python -m pip install .
- name: Pyright
uses: jakebailey/pyright-action@v2

0 comments on commit 028ccd2

Please sign in to comment.