Skip to content

Add a github workflow file for running tests #3

Add a github workflow file for running tests

Add a github workflow file for running tests #3

Workflow file for this run

name: Test
on: [push]
env:
DJANGO_SETTINGS_MODULE: "testing.test_settings"
jobs:
Test:
runs-on: python:3.12
steps:
- name: Run tests
run: >-
pip install -e .
cp testing/test_settings.py ./
django-admin test massmigration