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

Commit 747970c

Browse files
committed
t13
1 parent 17304df commit 747970c

File tree

1 file changed

+20
-14
lines changed

1 file changed

+20
-14
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -115,17 +115,23 @@ jobs:
115115
python \
116116
--python-path $(which python3)
117117
118-
static-type-check:
119-
runs-on: ubuntu-latest
120-
defaults:
121-
run:
122-
working-directory: ${{ inputs.working_directory }}
123-
steps:
124-
- uses: actions/checkout@v4
125-
with:
126-
submodules: 'recursive'
127-
- uses: actions/setup-python@v5
128-
with:
129-
python-version: "3.12"
130-
- run: pip install mypy==1.13.0
131-
- run: mypy .
118+
mypy:
119+
name: Run Mypy
120+
runs-on: ubuntu-latest
121+
steps:
122+
- name: Checkout code
123+
uses: actions/checkout@v2
124+
125+
- name: Set up Python
126+
uses: actions/setup-python@v2
127+
with:
128+
python-version: '3.13'
129+
130+
- name: Install dependencies
131+
run: |
132+
python -m pip install --upgrade pip
133+
pip install mypy==1.15.0
134+
# Add any other dependencies your project requires
135+
136+
- name: Run Mypy
137+
run: mypy /app/apps/codecov-api

0 commit comments

Comments
 (0)