Skip to content

improper commit

improper commit #1

Workflow file for this run

name: Checks
on: [push]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up Python 3.12
uses: actions/setup-python@master
with:
python-version: 3.12
- name: Run pre-commit hooks
run: |
pip install pre-commit
pre-commit run --all-files