Skip to content

Merge pull request #122 from xxyzz/analyze_template #1

Merge pull request #122 from xxyzz/analyze_template

Merge pull request #122 from xxyzz/analyze_template #1

Workflow file for this run

name: Lint
on:
workflow_dispatch:
push:
branches:
- '*'
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.12'
cache: 'pip'
- run: python -m pip install -e .[dev]
# - run: python -m black --check .
# - run: python -m mypy -p wikitextprocessor
# - run: python -m ruff .
- uses: crate-ci/typos@v1.16.19