mypy: analyze types in all possible libraries #2134
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint | |
on: [push, pull_request] | |
defaults: | |
run: | |
shell: bash -el {0} | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: environment.yml | |
- name: Add micromamba to GITHUB_PATH | |
run: echo "${HOME}/micromamba-bin" >> "$GITHUB_PATH" | |
- run: ln -s "${CONDA_PREFIX}" .venv # Necessary for pyright. | |
- run: pip install -e .[mypy] | |
- name: Add mypy to GITHUB_PATH | |
run: echo "${GITHUB_WORKSPACE}/.venv/bin" >> "$GITHUB_PATH" | |
- uses: pre-commit/[email protected] | |
with: | |
extra_args: --all-files --show-diff-on-failure | |
env: | |
PRE_COMMIT_USE_MICROMAMBA: 1 |