Skip to content

return DEBUG to fix Update main_djangonaut-space.yml #19

return DEBUG to fix Update main_djangonaut-space.yml

return DEBUG to fix Update main_djangonaut-space.yml #19

Workflow file for this run

name: Run tests
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
env:
ENVIRONMENT: 'dev'
DJANGO_SETTINGS_MODULE: 'indymeet.settings.dev'
SECRET_KEY: ${{ secrets.SECRET_KEY }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python version
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/requirements-test.txt
- name: Run tests
run: python manage.py test