chore(poua): compress poua.pdf 1.1MB -> 629KB (downsample embedded fi… #213
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: Paper citations | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "papers/**" | |
| - "prototypes/**" | |
| - "scripts/check_citations.py" | |
| - ".github/workflows/citations.yml" | |
| pull_request: | |
| paths: | |
| - "papers/**" | |
| - "prototypes/**" | |
| - "scripts/check_citations.py" | |
| - ".github/workflows/citations.yml" | |
| jobs: | |
| check-citations: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Validate paper citations resolve to real files | |
| run: python scripts/check_citations.py --verbose |