Skip to content

Update README.md add quick links section (#372) #527

Update README.md add quick links section (#372)

Update README.md add quick links section (#372) #527

Workflow file for this run

---
name: ✍️ Proselint
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
proselint:
name: 🧹 Run proselint
runs-on: ubuntu-latest
steps:
- name: ✅ Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
persist-credentials: false
- name: 👷🏾‍♂️ Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: '3.14'
- name: 🚧 Install Proselint
run: |
pip install proselint
- name: 🏃‍♀️ Run Proselint
run: |
proselint check . --config=".github/linters/proselint_config.json"