All checks were successful
Django Backend Validation / build (debian-latest, 3.11) (push) Successful in 12s
Django Backend Validation / build (debian-latest, 3.12) (push) Successful in 13s
Django Backend Validation / build (ubuntu-latest, 3.11) (push) Successful in 12s
Django Backend Validation / build (ubuntu-latest, 3.12) (push) Successful in 12s
Signed-off-by: Jochen Mehlich <coding@jochenmehlich.de>
25 lines
615 B
YAML
25 lines
615 B
YAML
name: Django Backend Validation
|
|
run-name: ${{ gitea.actor }} is running Django Tests
|
|
on: [push]
|
|
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
python-version: [3.11, 3.12]
|
|
os: [ubuntu-latest, debian-latest]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Install Dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
- name: Run Tests
|
|
run: |
|
|
python manage.py test
|