Skip to content

Commit 7423875

Browse files
MichaelCurringithub-actions
and
github-actions
authored
ci: add mkdir step for mypy (TheAlgorithms#5927)
* ci: add mkdir step for mypy * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
1 parent 9af2eef commit 7423875

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/build.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
run: |
2222
python -m pip install --upgrade pip setuptools six wheel
2323
python -m pip install mypy pytest-cov -r requirements.txt
24-
- run: mypy --ignore-missing-imports --install-types --non-interactive .
24+
- run: |
25+
mkdir -p .mypy_cache
26+
mypy --ignore-missing-imports --install-types --non-interactive .
2527
- name: Run tests
2628
run: pytest --doctest-modules --ignore=project_euler/ --ignore=scripts/validate_solutions.py --cov-report=term-missing:skip-covered --cov=. .
2729
- if: ${{ success() }}

DIRECTORY.md

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
* [Harris Corner](https://github.com/TheAlgorithms/Python/blob/master/computer_vision/harris_corner.py)
115115
* [Mean Threshold](https://github.com/TheAlgorithms/Python/blob/master/computer_vision/mean_threshold.py)
116116
* [Mosaic Augmentation](https://github.com/TheAlgorithms/Python/blob/master/computer_vision/mosaic_augmentation.py)
117+
* [Pooling Functions](https://github.com/TheAlgorithms/Python/blob/master/computer_vision/pooling_functions.py)
117118

118119
## Conversions
119120
* [Binary To Decimal](https://github.com/TheAlgorithms/Python/blob/master/conversions/binary_to_decimal.py)

0 commit comments

Comments
 (0)