mirror of
https://github.com/mvt-project/mvt.git
synced 2026-02-12 16:42:45 +00:00
MyPy checks should be renabled once the types are fixed in https://github.com/mvt-project/mvt/issues/545
24 lines
470 B
YAML
24 lines
470 B
YAML
name: Mypy
|
|
on: workflow_dispatch
|
|
|
|
jobs:
|
|
mypy_py3:
|
|
name: Mypy check
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.9
|
|
cache: 'pip'
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install mypy
|
|
- name: mypy
|
|
run: |
|
|
make mypy
|