Skip to content

Commit 65a5785

Browse files
committed
chore: add type_check to CI
1 parent 3c6b95b commit 65a5785

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,21 @@ jobs:
3939
- name: Lint the code
4040
run: nox -s lint
4141

42+
type_check:
43+
runs-on: ubuntu-latest
44+
steps:
45+
- name: Checkout Repository
46+
uses: actions/checkout@v3
47+
- name: Set up Python
48+
uses: actions/setup-python@v4
49+
with:
50+
python-version: "3.12"
51+
- name: Install dependencies
52+
run: |
53+
python3 -m pip install nox
54+
- name: Lint the code
55+
run: nox -s type_check
56+
4257
docs:
4358
runs-on: ubuntu-latest
4459
steps:

0 commit comments

Comments
 (0)