Skip to content

Bump mkdocs-material from 9.5.11 to 9.7.2 #10

Bump mkdocs-material from 9.5.11 to 9.7.2

Bump mkdocs-material from 9.5.11 to 9.7.2 #10

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