Skip to content

Cleanup lint.sh to avoid future confusion #108

Cleanup lint.sh to avoid future confusion

Cleanup lint.sh to avoid future confusion #108

Workflow file for this run

name: Lint
on: push
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- run: pip install -r requirements.txt
- name: cache pre-commit deps
id: cache_pre_commit
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-pre-commit-cache
- run: pre-commit run --all