[aaelf64] Apply Ties' review comments #130
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: 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 |