Skip to content

Commit

Permalink
Added pyright workflow to GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
geordi committed Mar 7, 2024
1 parent 7912c00 commit 12781dd
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/pyright.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'

- run: |
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
- run: echo "$PWD/.venv/bin" >> $GITHUB_PATH

- uses: jakebailey/pyright-action@v2

0 comments on commit 12781dd

Please sign in to comment.