Bump python from 3.12-slim to 3.14-slim #3805
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: Build website | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build website | |
| runs-on: ubuntu-24.04 | |
| env: | |
| CI: true | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Set up Python 3 | |
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | |
| with: | |
| python-version: '3.12' | |
| - name: Install system dependencies for lxml | |
| run: sudo apt-get update && sudo apt-get install -y libxml2-dev libxslt1-dev | |
| - name: Install Python dependencies | |
| run: make install-python-requirements | |
| - name: Build website | |
| run: (cd scripts && bash Generate_Site_mkDocs.sh) | |
| - name: List generated files | |
| run: ls -lah generated/site/ |