Skip to content

upgrade lxml

upgrade lxml #1948

Workflow file for this run

name: "mdformat"
on:
push:
branches: ["dev", "dev2", "github-action"]
workflow_dispatch:
jobs:
mdformat:
name: "Markdown format checking"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: List files
run: ls -l
- name: Download dependencies
run: python -m pip install mdformat==0.7.18
- name: Format .md files
run: find . -name '*.md' | grep -v '/__' | xargs mdformat
- name: Check for changes
run: bash scripts/ci/no-diff.sh