Bump werkzeug from 3.0.3 to 3.0.6 in the pip group #1283
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 | |
on: [pull_request] | |
env: | |
COMPOSE_INTERACTIVE_NO_CLI: 1 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build containers | |
run: docker compose -f ./docker-compose.yml -f ./docker-compose.ci.yml build --parallel | |
- name: Test | |
run: docker compose -f ./docker-compose.yml -f ./docker-compose.ci.yml run -T app poetry run make test |