Skip to content

chore: update GitHub Actions workflow to improve Pandoc installation … #4

chore: update GitHub Actions workflow to improve Pandoc installation …

chore: update GitHub Actions workflow to improve Pandoc installation … #4

Workflow file for this run

name: Lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Install dependencies
run: |
uv venv
uv pip install ruff
- name: Check formatting with ruff
run: uv run ruff format --check
- name: Run linting with ruff (all rules)
run: uv run ruff check