quoteMe/.gitea/workflows/migrate.yaml
Jochen Mehlich 14e8eff8b8
Some checks failed
Test Django / Test migration (push) Failing after 4s
fix
Signed-off-by: Jochen Mehlich <contact@jochenmehlich.de>
2023-12-19 19:45:57 +01:00

22 lines
496 B
YAML

name: Test Django
run-name: ${{ gitea.actor }} testing
on: [push]
jobs:
migrate:
name: Test migration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
submodules: true
token: ${{ secrets.TOKEN}}
- name: Set up Python 3.11
run: |
apt install -yqq python3 python3-docs python3-pip
- name: Install Dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt