129985 change database image to PostGIS #1257
Workflow file for this run
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: 'Install, lint, test & build' | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.10 | |
- name: Linting | |
run: bash cleanup.sh | |
- name: Create Docker Looplijsten Backend network | |
run: docker network create top_network | |
- name: Create Docker Top and Zaak Backend Bridge network | |
run: docker network create top_and_zaak_backend_bridge | |
- name: Build Docker image | |
run: docker compose -f docker-compose.local.yml up -d | |
- run: sleep 30 | |
- name: Run Tests | |
run: docker compose -f docker-compose.local.yml exec -T api python manage.py test | |
################################################### | |
# On failure | |
################################################### | |
- if: ${{ failure() }} | |
name: "ON FAILURE: Which containers were running while failing?" | |
run: docker ps -a | |
- if: ${{ failure() }} | |
name: "ON FAILURE: Backend logs" | |
run: docker logs top-backend-api-1 | |
- if: ${{ failure() }} | |
name: "ON FAILURE: Celery worker logs" | |
run: docker logs top_celery_worker |