chore: add another workflow that uses github actions secrets #1
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: 3 - Test Django Env Vars | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
DJANGO_DEBUG: 0 | |
DATABASE_URL: ${{ secrets.NEON_DATABASE_URL }} | |
# DJANGO_SECRET_KEY: not-good | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Setup django secret key | |
run: | | |
MY_GEN_KEY=$(openssl rand -base64 32) | |
echo "DJANGO_SECRET_KEY=$MY_GEN_KEY" >> $GITHUB_ENV | |
- name: Show DATABASE_URL | |
run: | | |
echo ${{ env.DATABASE_URL }} | |
echo $DATABASE_URL | |
- name: Install Requirements | |
run: | | |
python -m pip install pip --upgrade | |
python -m pip install -r requirements.txt | |
- name: Django Tests | |
working-directory: ./src | |
run: | | |
python manage.py test |