From a98c00c7d9c5b7f4a68b0597332ba30c007fe31e Mon Sep 17 00:00:00 2001 From: Paul McKissock Date: Fri, 26 Jul 2024 13:24:07 -0400 Subject: [PATCH] [#8] Github actions test. --- .github/workflows/django.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/django.yml diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml new file mode 100644 index 0000000..21aa8e0 --- /dev/null +++ b/.github/workflows/django.yml @@ -0,0 +1,29 @@ +name: Django CI + +on: [push] + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.12.4 + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Apply migrations + run: | + python manage.py migrate + + - name: Run tests + run: | + python manage.py test