Skip to content

Add CI linting for Python (ruff) and HTML (htmlhint) (#9) #2

Add CI linting for Python (ruff) and HTML (htmlhint) (#9)

Add CI linting for Python (ruff) and HTML (htmlhint) (#9) #2

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
jobs:
python:
name: Python (ruff)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v3
html:
name: HTML (htmlhint)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npx htmlhint "**/*.html"