Skip to content

Update README.md

Update README.md #36

Workflow file for this run

---
name: pre-commit
on: # yamllint disable-line rule:truthy
push:
branches-ignore:
- 'false'
pull_request:
branches-ignore:
- 'false'
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit on all files
run: pre-commit run --all-files