[LSFE] Correct change 9f262a0c7 to preserve S1 (val) in example code #663
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 |