Skip to content

Engagement page

Engagement page #99

Workflow file for this run

name: ci-django-tests
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-test.txt
- name: Run Tests
run: |
cd django
mv core/local_settings.test.py core/local_settings.py
coverage run manage.py test
coverage report