Update dependency python to 3.14 #240
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: Run make under CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| show-progress: false | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Install Python `uv` | |
| uses: astral-sh/setup-uv@v7 | |
| - run: sudo apt update | |
| - name: Install shellcheck and checkbashisms | |
| run: sudo apt -y install shfmt shellcheck devscripts | |
| - name: Install markdownlint | |
| run: npm install markdownlint-cli2 --global | |
| - name: Install Python `uv` | |
| run: curl -LsSf https://astral.sh/uv/install.sh | sh | |
| - name: Sync Python dependencies | |
| run: uv sync --all-groups | |
| - name: style check | |
| run: make style-check |