Skip to content

Merge pull request #2117 from MBARIMike/pyup-update-django-5.0.5-to-5… #721

Merge pull request #2117 from MBARIMike/pyup-update-django-5.0.5-to-5…

Merge pull request #2117 from MBARIMike/pyup-update-django-5.0.5-to-5… #721

Workflow file for this run

name: Django CI
# Enable Buildkit and let compose use it to speed up image building
env:
DOCKER_BUILDKIT: 1
COMPOSE_DOCKER_CLI_BUILD: 1
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.10]
steps:
- uses: actions/checkout@v3
- name: Build the stack and run tests
run: docker-compose -f docker/docker-compose-actions.yml up -d --build
- name: Tear down the Stack
run: docker-compose -f docker/docker-compose-actions.yml down