Skip to content

Commit b915ed4

Browse files
Lukas MollemanLukas Molleman
authored andcommitted
Added mypy github CI
1 parent 6e6bc86 commit b915ed4

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/runtests.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,20 @@ jobs:
3030

3131
- name: Run Ruff on the sympy benchmark package
3232
run: ruff check .
33+
34+
# ----------------------------- mypy ----------------------------- #
35+
36+
mypy:
37+
needs: code-quality
38+
39+
runs-on: ubuntu-20.04
40+
steps:
41+
- uses: actions/checkout@v3
42+
- uses: actions/setup-python@v4
43+
with:
44+
python-version: '3.11'
45+
- run: python -m pip install --upgrade pip
46+
- run: pip install mpmath mypy
47+
48+
- name: Run mypy on the sympy package
49+
run: mypy benchmarks slow_benchmarks

0 commit comments

Comments
 (0)