Skip to content

Commit

Permalink
💚 Disable setup_config for quickstart job
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenbal committed Dec 24, 2024
1 parent 9310fc7 commit 1dd2400
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/quick_start.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: quick-start

on: [push]

# env:
# RUN_SETUP_CONFIG: false

jobs:
run:
runs-on: ubuntu-latest
Expand All @@ -12,7 +15,7 @@ jobs:
- name: Start docker containers
run: docker compose up -d --no-build
- name: Load fixtures
run: docker compose exec -T web src/manage.py loaddata demodata
run: sleep 10 && docker compose exec -T web src/manage.py loaddata demodata
- name: Create superuser
run: docker compose exec -T web src/manage.py createsuperuser --username admin --email [email protected] --no-input
- name: Check main page
Expand Down

0 comments on commit 1dd2400

Please sign in to comment.