quoteMe/.gitea/workflows/migrate.yaml
Jochen Mehlich f07e9c7bb4
Some checks reported warnings
Test Django / SQLITE3 Migrations (push) Has been cancelled
added cicd trigger
Signed-off-by: Jochen Mehlich <contact@jochenmehlich.de>
2023-12-19 19:28:16 +01:00

20 lines
394 B
YAML

name: Test Django
on:
push:
jobs:
migrate:
name: SQLITE3 Migrations
runs-on: ubuntu:latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt