Lint code #26
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 check | |
run-name: Lint code | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
env: | |
PYTHON_VERSION: 3.8 | |
jobs: | |
changed-files: | |
runs-on: ubuntu-latest | |
name: Get changed files | |
outputs: | |
any_docs_changed: ${{ steps.changed-doc-files.outputs.any_changed }} | |
any_python_changed: ${{ steps.changed-python-files.outputs.any_changed }} | |
changed_doc_files: ${{ steps.changed-doc-files.outputs.all_changed_files }} | |
changed_python_files: ${{ steps.changed-python-files.outputs.all_changed_files }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get changed docs files | |
id: changed-doc-files | |
uses: tj-actions/changed-files@v44 | |
with: | |
files: | | |
docs/** | |
- name: Get changed python files | |
id: changed-python-files | |
uses: tj-actions/changed-files@v44 | |
with: | |
files: | | |
**.py | |
format: | |
if: needs.changed-files.outputs.any_python_changed == 'true' | |
runs-on: ubuntu-latest | |
name: Check formatting | |
needs: changed-files | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Python tools | |
uses: BrandonLWhite/pipx-install-action@v0.1.1 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
cache: poetry | |
- name: Install dependencies | |
run: poetry install --only=format | |
- name: Check code formatting | |
uses: liskin/gh-problem-matcher-wrap@v3 | |
with: | |
linters: isort | |
run: poe check-format ${{ needs.changed-files.outputs.changed_python_files }} | |
lint: | |
if: needs.changed-files.outputs.any_python_changed == 'true' | |
runs-on: ubuntu-latest | |
name: Check linting | |
needs: changed-files | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Python tools | |
uses: BrandonLWhite/pipx-install-action@v0.1.1 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
cache: poetry | |
- name: Install dependencies | |
run: poetry install --only=lint | |
- name: Lint code | |
uses: liskin/gh-problem-matcher-wrap@v3 | |
with: | |
linters: flake8 | |
run: poe lint ${{ needs.changed-files.outputs.changed_python_files }} | |
mypy: | |
if: needs.changed-files.outputs.any_python_changed == 'true' | |
runs-on: ubuntu-latest | |
name: Check types with mypy | |
needs: changed-files | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Python tools | |
uses: BrandonLWhite/pipx-install-action@v0.1.1 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
cache: poetry | |
- name: Install dependencies | |
run: poetry install --only=typing | |
- name: Type check code | |
uses: liskin/gh-problem-matcher-wrap@v3 | |
continue-on-error: true | |
with: | |
linters: mypy | |
run: poe check-types --show-column-numbers --no-error-summary ${{ needs.changed-files.outputs.changed_python_files }} | |
docs: | |
if: needs.changed-files.outputs.any_docs_changed == 'true' | |
runs-on: ubuntu-latest | |
name: Check docs | |
needs: changed-files | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Python tools | |
uses: BrandonLWhite/pipx-install-action@v0.1.1 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
cache: poetry | |
- name: Install dependencies | |
run: poetry install --only=docs | |
- uses: sphinx-doc/github-problem-matcher@master | |
name: Build docs | |
with: | |
run: poe docs |