Skip to content

Model updates and fixes #134

Model updates and fixes

Model updates and fixes #134

Workflow file for this run

name: lint
on:
pull_request:
push:
branches:
- trunk
jobs:
pre-commit:
runs-on: ubuntu-latest
name: Run all pre-commit checks
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
cache-dependency-path: pyproject.toml
- run: |
pip install -U pip setuptools wheel
pip install -e .[lxml,dev]
- uses: pre-commit/[email protected]