Update dependency python to 3.14 #1127
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: pull-requests | |
| on: | |
| pull_request: | |
| branches: | |
| - development | |
| - RC | |
| - master | |
| jobs: | |
| test-pr: | |
| name: Test Pull Request | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.14' # renovate: datasource=github-tags depName=python | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install ansible==12.2.0 # renovate: datasource=pypi depName=ansible | |
| pip install ansible-lint==25.9.2 # renovate: datasource=pypi depName=ansible-lint | |
| - name: Syntax Check | |
| run: | | |
| ansible-playbook site.yml --syntax-check | |
| - name: Ansible lint | |
| run: | | |
| ansible-lint -v roles/netbootxyz/tasks | |
| build-pr: | |
| name: Build Pull Request | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v6 | |
| - name: Build PR release | |
| run: | | |
| ./script/build_release pr |