Skip to content

settings: Fix CSRF issue #24

settings: Fix CSRF issue

settings: Fix CSRF issue #24

Workflow file for this run

name: Unit tests
on: [push]
jobs:
unit_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
pip3 install -r requirements.txt
- name: Run migrations
run: SECRET_KEY=unittests ./manage.py migrate
- name: Run tests
run: SECRET_KEY=unittests ./manage.py test