Skip to content
This repository was archived by the owner on Mar 19, 2026. It is now read-only.

Bump actions/checkout from 3 to 6 #250

Bump actions/checkout from 3 to 6

Bump actions/checkout from 3 to 6 #250

name: Static analysis
on: [pull_request]
jobs:
pre-commit-checks:
name: Pre-commit checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install pre-commit
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit
run: |
pre-commit run --show-diff-on-failure --color=always --all-files