fix #92 #93 issue with db password and messages in queue button with missing recipe/profile #15
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: Build and test docker image | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: | | |
docker compose -f docker-compose.yml -f docker-compose.build.yml build | |
docker compose -f docker-compose.yml up -d | |
sleep 20 # wait until compose is up | |
docker compose exec -T webapp /bin/bash -c "python manage.py test" | |