Skip to content

Update MkDoxy core

Update MkDoxy core #90

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m venv .venv
source .venv/bin/activate
pip install pre-commit sourcery-cli pre-commit-hooks black ruff pytest
- name: Run pre-commit hooks
uses: pre-commit/[email protected]
with:
extra_args: '--all-files'