Skip to content

Make the url-shortener diagram vertical with white subgraph backgrounds #67

Make the url-shortener diagram vertical with white subgraph backgrounds

Make the url-shortener diagram vertical with white subgraph backgrounds #67

Workflow file for this run

name: Pre-commit Checks
on:
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
jobs:
pre-commit:
name: Run pre-commit hooks
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: '3.12'
cache: 'pip'
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --show-diff-on-failure