First pass of the Nextflow Run course #50
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Markdown Headings | |
on: | |
pull_request: | |
paths: | |
- "**.md" | |
jobs: | |
check-headings: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v5 | |
- name: Get changed markdown files | |
id: changed-files | |
uses: tj-actions/changed-files@v42 | |
with: | |
files: "**.md" | |
- name: Run check_headings.py | |
run: uv run .github/check_headings.py ${{ steps.changed-files.outputs.all_changed_files }} |