Skip to content

Bump redis from 3.5.3 to 5.0.7 in /app #3088

Bump redis from 3.5.3 to 5.0.7 in /app

Bump redis from 3.5.3 to 5.0.7 in /app #3088

Workflow file for this run

name: 'Main, lint, build & manage.py test'
on:
push:
branches: [ main ]
pull_request:
branches: [ main, develop ]
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 bin/cleanup_pre_commit.sh
- name: Build Docker image
run: docker-compose -f docker-compose.local.yml build
- name: Create Docker network
run: docker network create zaken_network
- name: Create TOP and Zaken Docker network
run: docker network create top_and_zaak_backend_bridge
- name: Start images
run: docker-compose -f docker-compose.local.yml up -d
- name: Run Tests
run: docker-compose -f docker-compose.local.yml exec -T zaak-gateway python manage.py test