Bump werkzeug from 3.0.3 to 3.0.6 in /python/poetry-run #110
This file contains 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: Test Pull Request (python) | |
on: | |
merge_group: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'python/**' | |
- '.github/workflows/test-pull-request-python.yml' | |
concurrency: | |
# only one instance of test suite per PR at one time | |
group: pr-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
smoke: | |
name: Smoke Tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
max-parallel: 3 | |
matrix: | |
builder: | |
- 'paketobuildpacks/builder-jammy-full:latest' | |
- 'paketobuildpacks/builder-jammy-base:latest' | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22.x | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Test python Samples | |
run: | | |
./scripts/smoke.sh --suite python \ | |
--builder ${{ matrix.builder }} |