Skip to content

Commit aa7deb6

Browse files
committed
Pyright setup on CI
1 parent 5d80c1a commit aa7deb6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/pyright.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Pyright
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
pyright:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: read
12+
pull-requests: read
13+
name: "Pyright"
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-python@v5
17+
with:
18+
python-version: '3.11'
19+
- uses: jakebailey/pyright-action@v2
20+
with:
21+
version: 1.1.311
22+
working-directory:
23+
src

0 commit comments

Comments
 (0)