Skip to content

Commit

Permalink
Create pyright.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mira-miracoli authored Oct 16, 2024
1 parent 111c510 commit ab27b4b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pyright.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Pyright

"on":
pull_request:
push:
branches:
- main
workflow_dispatch:

jobs:
pyright:
runs-on: ubuntu-latest
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

0 comments on commit ab27b4b

Please sign in to comment.