Merge pull request #212 from jond01/tests/leumi #168
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: Pre-commit | |
on: | |
push: | |
branches: | |
- main | |
- "releases/**" | |
pull_request: | |
branches: | |
- main | |
- "releases/**" | |
workflow_dispatch: | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
env: | |
CACHE_DIR: /opt/.cache | |
PRE_COMMIT_HOME: /opt/.cache/pre-commit | |
RUFF_CACHE_DIR: /opt/.cache/ruff | |
MYPY_CACHE_DIR: /opt/.cache/mypy | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Poetry | |
run: pipx install --pip-args="-c ${{ github.workspace }}/.github/workflows/poetry-constraint.txt" poetry | |
- uses: actions/setup-python@v5 | |
with: | |
python-version-file: .python-version | |
cache: poetry | |
cache-dependency-path: | | |
poetry.lock | |
.github/workflows/env-markers/poetry-install.txt | |
- name: Install dependencies | |
run: poetry install | |
- name: Set PY | |
id: set-py | |
run: echo "PY=$(python -VV | sha256sum | cut -d ' ' -f 1)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ env.CACHE_DIR }} | |
key: pre-commit-${{ runner.os }}-python-${{ steps.set-py.outputs.PY }}-config-and-deps-${{ hashFiles('.pre-commit-config.yaml', 'poetry.lock') }} | |
- name: Run pre-commit | |
env: | |
PRE_COMMIT_COLOR: always | |
run: poetry run pre-commit run --all-files |