WIP Add patching guide #8
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: linting | |
on: | |
push: | |
branches: | |
- devel | |
- master | |
pull_request: | |
branches: | |
- devel | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install poetry | |
run: | | |
pipx install poetry | |
- name: Set up Python | |
id: python | |
uses: actions/setup-python@v4 | |
with: | |
cache: 'poetry' | |
- name: Install package | |
run: | | |
poetry install | |
- name: Run linters | |
env: | |
NO_COLORS: true # Disable colors in ruff output | |
run: | | |
echo "::add-matcher::.github/matchers/ruff.json" | |
echo "::add-matcher::.github/matchers/unbehead.json" | |
poetry run -- make lint | |
echo "::remove-matcher owner=unbehead::" | |
echo "::remove-matcher owner=ruff::" |