Skip to content

templates: Disable enter key and right mouse button #26

templates: Disable enter key and right mouse button

templates: Disable enter key and right mouse button #26

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