Skip to content

Commit bca8645

Browse files
committed
Obey pipeline
1 parent b82445b commit bca8645

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/misc_0.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,3 +152,21 @@ jobs:
152152

153153
- name: Run tests
154154
run: tox -e ruff
155+
156+
typecheck:
157+
name: typecheck
158+
runs-on: ubuntu-latest
159+
steps:
160+
- name: Checkout repo @ SHA - ${{ github.sha }}
161+
uses: actions/checkout@v4
162+
163+
- name: Set up Python 3.11
164+
uses: actions/setup-python@v5
165+
with:
166+
python-version: "3.11"
167+
168+
- name: Install tox
169+
run: pip install tox
170+
171+
- name: Run tests
172+
run: tox -e typecheck

0 commit comments

Comments
 (0)