Merge staging into production, 14 Aug 2024 #118
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: django-tests | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: mkdir -p config/envs | |
- uses: SpicyPizza/[email protected] | |
with: | |
envkey_POSTGRES_DB: test_cantusdb | |
envkey_POSTGRES_USER: test_user | |
envkey_POSTGRES_HOST: postgres | |
envkey_POSTGRES_PORT: 5432 | |
envkey_PROJECT_ENVIRONMENT: PRODUCTION | |
envkey_CANTUSDB_STATIC_ROOT: /path/to/static | |
envkey_CANTUSDB_MEDIA_ROOT: /path/to/media | |
envkey_CANTUSDB_HOST: somehost | |
envkey_CANTUSDB_SECRET_KEY: "hereisakey1234" | |
envkey_POSTGRES_PASSWORD: woahagreatpasswordabc | |
envkey_AWS_EMAIL_HOST_USER: test_user | |
envkey_AWS_EMAIL_HOST_PASSWORD: test_password | |
directory: config/envs | |
file_name: dev_env | |
- run: docker compose -f docker-compose-test-runner.yml build | |
- run: docker compose -f docker-compose-test-runner.yml up -d | |
- run: docker compose -f docker-compose-test-runner.yml exec -T django python manage.py test main_app.tests |