Merge pull request 'addGiteaActions' (#2) from addGiteaActions into main
All checks were successful
Test Django / Test migration (push) Successful in 38s

Reviewed-on: #2
This commit is contained in:
Jochen 2023-12-20 17:19:11 +00:00
commit 806fe22a12
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,24 @@
name: Test Django
run-name: ${{ gitea.actor }} testing
on: [push]
jobs:
migrate:
name: Test migration
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.11
run: |
apt update -y
apt install -yqq python3 python3-pip
- name: Install Dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Run migration
run: |
python3 manage.py migrate

View File

@ -1,6 +1,12 @@
asgiref==3.7.2
beautifulsoup4==4.12.2
Django==4.2.7
django-bootstrap-v5==1.0.11
django-browser-reload==1.12.1
django-shortcuts==1.6
djangorestframework==3.14.0
include==0.2.2
mysqlclient==2.2.0
pytz==2023.3.post1
soupsieve==2.5
sqlparse==0.4.4