name: Markdown style checks on: push: branches: - main paths: - 'docs/**' # Only run on changes to the docs directory pull_request: branches: - '*' paths: - 'docs/**' # Only run on changes to the docs directory jobs: markdown-lint: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v5 with: fetch-depth: 0 - name: Create venv run: make install - name: Lint markdown run: make lint-md