Skip to content

Expand readme diagrams and documentation #190

Expand readme diagrams and documentation

Expand readme diagrams and documentation #190

Workflow file for this run

---
on:
pull_request:
push:
branches: [main, master]
name: pre-commit
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10.12
- name: Install pre-commit
run: sudo apt-get install pre-commit
shell: bash
- name: Cache pre-commit environment
uses: actions/cache@v2
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run pre-commit
run: pre-commit run --show-diff-on-failure --color=always --all-files
shell: bash