Some checks reported warnings
Test Django / SQLITE3 Migrations (push) Has been cancelled
Signed-off-by: Jochen Mehlich <contact@jochenmehlich.de>
20 lines
394 B
YAML
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
|
|
|