Skip to content

build(deps): bump astral-sh/setup-uv from 5.2.1 to 5.2.2 in the github-actions group #79

build(deps): bump astral-sh/setup-uv from 5.2.1 to 5.2.2 in the github-actions group

build(deps): bump astral-sh/setup-uv from 5.2.1 to 5.2.2 in the github-actions group #79

Workflow file for this run

name: Pymarkdownlnt
# Runs the workflow on the below events:
# 1. on pull request raised to trunk branch.
# 2. on push event to trunk branch.
on:
push:
branches:
- trunk
pull_request:
branches:
- trunk
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
lint-markdown:
runs-on: ubuntu-24.04
name: Lint Markdown
steps:
- name: Install uv
uses: astral-sh/setup-uv@4db96194c378173c656ce18a155ffc14a9fc4355 # v5.2.2
with:
version: "0.5.26"
- name: checkout repo content
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install and run linter
run: |-
sudo apt-get install python3-poetry-plugin-export
cd tools
uv venv
. .venv/bin/activate
poetry export --format requirements.txt --output requirements.txt
uv pip install --require-hashes -r requirements.txt
cd ..
pymarkdownlnt scan */*.md