Update python Docker tag to v3.14.0 #4

Merged
tidoni merged 3 commits from renovate/python-3.x into main 2025-10-18 11:23:04 +02:00
Showing only changes of commit 729f2b9a83 - Show all commits

View file

@ -2,6 +2,9 @@ name: PR-Build
on:
push:
branches:
- '*' # matches every branch that doesn't contain a '/'
- '*/*' # matches every branch containing a single '/'
- '**' # matches every branch
- '!master' # excludes master
- '!main' # excludes main
@ -10,6 +13,9 @@ jobs:
pr-check:
name: PR Build
runs-on: ubuntu-24.04
defaults:
run:
working-directory: ./job-scripts
timeout-minutes: 30
steps:
# Make sure docker is available
@ -19,4 +25,4 @@ jobs:
# - run: (cd /root && git clone https://git.tidoni-sky.ddnss.de/tidoni/pdf-web-toolkit.git)
# - run: (cd /root/pdf-web-toolkit && docker build -t pdf-web-toolkit .)
- run: docker build -t pdf-web-toolkit .
- run: podman run --rm --name pdf-web-toolkit pdf-web-toolkit pytest
- run: docker run --rm --name pdf-web-toolkit pdf-web-toolkit pytest