Updated spec year change to 2026, updated new-release.py script #797
Workflow file for this run
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: update repositories | |
| run: sudo apt update | |
| - name: install libcairo-dev | |
| run: sudo apt install -y libcairo-dev | |
| - name: install packages | |
| run: pip install -r tools/rst2pdf/requirements.txt | |
| - name: check .rst document syntax | |
| run: tools/common/check-rst-syntax.sh | |
| - name: build PDFs | |
| run: tools/rst2pdf/generate-pdfs.sh PDFs | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: PDFs | |
| path: PDFs |