Get branches where commit is head #2331
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: | |
branches: | |
- main | |
- release-v* | |
pull_request: | |
merge_group: | |
jobs: | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- run: | | |
python -m pip install --upgrade pip | |
pip install -e . | |
pip install -r requirements/types.txt | |
- uses: liskin/gh-problem-matcher-wrap@v2 | |
with: | |
action: add | |
linters: mypy | |
- run: mypy --show-column-numbers github tests | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
# FIXME: pin pre-commit<4 pending PyCQA/docformatter#287 | |
- name: install pre-commit | |
run: python -m pip install 'pre-commit<4' | |
- name: show environment | |
run: python -m pip freeze --local | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pre-commit | |
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }} | |
- name: run pre-commit | |
run: pre-commit run --show-diff-on-failure --color=always --all-files | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
- run: pip install -r requirements/docs.txt | |
- run: pip install -e . | |
- run: sphinx-build doc build |