This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
Bump tox from 4.16.0 to 4.22.0 #554
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] | |
env: | |
PYTHON_VERSION: 3.9 | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install Poetry | |
uses: ThePalaceProject/circulation/.github/actions/poetry@main | |
with: | |
version: "1.6.1" | |
- name: Install Pre-commit | |
run: | | |
poetry install --only ci | |
env: | |
POETRY_VIRTUALENVS_CREATE: false | |
- name: Restore pre-commit cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pre-commit | |
key: pre-commit-${{ runner.os }}-py${{ env.PYTHON_VERSION }}-${{ hashFiles('.pre-commit-config.yaml') }} | |
restore-keys: pre-commit-${{ runner.os }}-py${{ env.PYTHON_VERSION }} | |
- name: Lint | |
run: pre-commit run --all-files --show-diff-on-failure |