diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2fd2aea..4897cfe 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,4 +18,18 @@ jobs: uses: psf/black@stable with: options: "--check --verbose" - version: "23.3.0" \ No newline at end of file + 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 \ No newline at end of file