Skip to content

Bump mkdocs-autorefs from 0.5.0 to 1.4.4 #9

Bump mkdocs-autorefs from 0.5.0 to 1.4.4

Bump mkdocs-autorefs from 0.5.0 to 1.4.4 #9

Workflow file for this run

name: Lint and Format with Ruff
on:
push:
pull_request:
branches:
- main
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: docker build --target hatch -t myapp:hatch .
- name: Check formatting with Ruff
run: docker run --rm -e HATCH_ENV=lint -v "${{ github.workspace }}:/app" myapp:hatch format-check
- name: Run Ruff linter
run: docker run --rm -e HATCH_ENV=lint -v "${{ github.workspace }}:/app" myapp:hatch check