build(deps): bump jinja2 from 3.1.4 to 3.1.5 #205
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: Run tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Test people.json is valid JSON | |
run: | | |
python3 -c 'import json; json.load(open("people.json"))' | |
- name: Test image builds | |
run: | | |
docker compose -f compose.yml build | |
- name: Test container can start and is healthy | |
run: | | |
# Launch the project from docker-compose.yml and wait up to | |
# 30s for its built-in health check to return "healthy" | |
docker compose -f compose.yml up --wait --wait-timeout 30 | |
docker compose -f compose.yml down | |
- name: Run Pytest tests | |
run: | | |
docker compose -f compose.yml run --entrypoint "" web pytest |