Add tests to github workflows

This commit is contained in:
2026-01-17 22:35:29 +01:00
parent 289ace4a49
commit 268fe8f9a7

View File

@@ -25,7 +25,11 @@ jobs:
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r requirements.txt pip install -r requirements.txt
- name: Run Tests - name: Run Migrations
run: | run: |
cd ram cd ram
python manage.py migrate python manage.py migrate
- name: Run Tests
run: |
cd ram
python manage.py test --verbosity=2