File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3737 - name : ruff --> Check code formatting
3838 run : ruff format --check .
3939
40- # Use mypy for static type checking
41- mypy-check :
42- runs-on : ubuntu-latest
43- steps :
44- - name : Checkout repo
45- uses : actions/checkout@v4
46- - name : Set up Python
47- uses : actions/setup-python@v4
48- with :
49- python-version : " 3.14"
50- - name : Install dependencies
51- run : |
52- python -m pip install --upgrade pip
53- pip install mypy
54- # Start by installing type stubs
55- - name : mypy --> Install stubs
56- run : mypy --install-types --non-interactive .
57-
5840 # Use pip-check-reqs/pip-missing-reqs to check for missing dependencies
5941 requirements-check :
6042 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -18,11 +18,6 @@ ignore = [
1818 " E741" , # Ambiguous variable name
1919]
2020
21- [tool .mypy ]
22- ignore_missing_imports = true
23- follow_imports = ' skip'
24- exclude = " build"
25-
2621[project ]
2722name = " dataflow_transfer"
2823version = " 1.0.3"
You can’t perform that action at this time.
0 commit comments