Skip to content

Commit 106efcd

Browse files
committed
Add github action to run pyright in CI
1 parent 84d9e0c commit 106efcd

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/pyright.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Pyright
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
8+
jobs:
9+
type-check:
10+
runs-on: "ubuntu-latest"
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v3
14+
- name: Run Pyright
15+
uses: jakebailey/pyright-action@v1

0 commit comments

Comments
 (0)