ci: add build timeout to all jobs

This commit is contained in:
sebthom
2025-02-10 18:51:54 +01:00
parent 2402ba2572
commit ec7ffedcd6
4 changed files with 15 additions and 8 deletions

View File

@@ -30,7 +30,7 @@ defaults:
shell: bash
env:
PYTHON_VERSION: "3.12"
PYTHON_VERSION: "3.13.2"
jobs:
@@ -38,6 +38,7 @@ jobs:
analyze:
###########################################################
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
security-events: write
@@ -50,7 +51,7 @@ jobs:
uses: actions/checkout@v4 # https://github.com/actions/checkout
- name: "Install Python and PDM" # https://github.com/pdm-project/setup-pdm
- name: "Install Python and PDM" # https://github.com/pdm-project/setup-pdm
uses: pdm-project/setup-pdm@v4
with:
python-version: "${{ env.PYTHON_VERSION }}"