Skip to content

feat: added .env.example file to template secret variables #9

feat: added .env.example file to template secret variables

feat: added .env.example file to template secret variables #9

Workflow file for this run

name: Server testing
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# - name: Run tests
# run: |
# python manage.py test
- name: Check for errors
run: |
python manage.py check