Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 32d3f62

Browse files
committed
t16
1 parent ff72ab5 commit 32d3f62

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,6 @@ jobs:
8888

8989
upload-overwatch:
9090
runs-on: ubuntu-latest
91-
defaults:
92-
run:
93-
working-directory: ${{ inputs.working_directory }}
9491
steps:
9592
- name: Install Static Analysis Tools
9693
run: |
@@ -119,3 +116,18 @@ jobs:
119116
--organization-slug codecov \
120117
python \
121118
--python-path $(which python3)
119+
120+
patch-typing-check:
121+
runs-on: ubuntu-latest
122+
defaults:
123+
run:
124+
working-directory: ${{ inputs.working_directory }}
125+
steps:
126+
- uses: actions/checkout@v4
127+
with:
128+
submodules: 'recursive'
129+
- uses: actions/setup-python@v5
130+
with:
131+
python-version: "3.12"
132+
- run: pip install mypy==1.13.0
133+
- run: mypy . --ignore-missing-imports ${{ inputs.extra_config }}

0 commit comments

Comments
 (0)