Skip to content

Commit

Permalink
Merge pull request #428 from kedhammar/master
Browse files Browse the repository at this point in the history
Fix mypy inclusivity
  • Loading branch information
kedhammar authored Jul 1, 2024
2 parents 887b658 + d203a09 commit cf2d277
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ jobs:
pip install mypy
# Start by installing type stubs
- name: mypy --> Install stubs
run: echo -e "y" | mypy --install-types **/*.py || exit 0
run: echo -e "y" | mypy --install-types . || exit 0
- name: mypy --> Static type checking
# Configured in pyprojet.toml
run: mypy **/*.py
run: mypy .

# Use pipreqs to check for missing dependencies
pipreqs-check:
Expand Down
4 changes: 4 additions & 0 deletions VERSIONLOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# TACA Version Log

## 20240617.1

Run mypy for entire repo regardless of depth.

## 20240527.1

Use run-specific name to find Anglerfish samplesheet.
Expand Down

0 comments on commit cf2d277

Please sign in to comment.