Skip to content

Updated the spec_test location and the documentation for the CLI #45

Updated the spec_test location and the documentation for the CLI

Updated the spec_test location and the documentation for the CLI #45

Workflow file for this run

---
name: Mdformat
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
mdformat:
name: Markdown formatting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mdformat>=0.7.0 mdformat-myst>=0.1.5
- name: Run mdformat (check only)
run: |
mdformat --check --wrap no --number docs/
mdformat --check --wrap no --number *.md