Skip to content

Improve progress indication #16

Improve progress indication

Improve progress indication #16

Workflow file for this run

name: Pre-commit
on:
pull_request:
push:
branches: [ master ]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Run pre-commit
run: pre-commit run --all-files --show-diff-on-failure