Skip to content

docs: add 1.9.0 post #421

docs: add 1.9.0 post

docs: add 1.9.0 post #421

Workflow file for this run

name: Lint
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Run pre-commit
run: |
pip install pre-commit==3.8.0
pre-commit run --all-files