Allow only a single selection for Category (#184) #1
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: Snapshot Tests for auto-pr | |
on: | |
push: | |
paths: | |
- 'generate_guideline_templates.py' | |
- 'scripts/auto-pr-helper.py' | |
- '.github/auto-pr-tests/**' | |
workflow_dispatch: # also allow manual runs | |
jobs: | |
snapshot-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v6 | |
- name: Run snapshot tests | |
run: | | |
uv run python .github/auto-pr-tests/test_runner.py |