On branch dev
Your branch is up to date with 'origin/dev'. Changes to be committed: modified: .github/workflows/test.yml modified: danix/makefile
This commit is contained in:
parent
0e048be922
commit
2da93a0977
|
|
@ -1,7 +1,10 @@
|
||||||
name: Danix File System
|
name: Danix File System
|
||||||
|
|
||||||
on: pull_request
|
on:
|
||||||
on: push
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
|
push:
|
||||||
|
branches: [dev]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
continuous-integration:
|
continuous-integration:
|
||||||
|
|
@ -11,16 +14,14 @@ jobs:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Test
|
- name: Test
|
||||||
- uses: actions/setup-python@v2
|
- uses: actions/setup-python@v2
|
||||||
|
- shell: bash
|
||||||
- with:
|
- with:
|
||||||
python-version: 3.11
|
python-version: 3.11
|
||||||
- name: Install Requirements
|
- name: Install danix
|
||||||
run: |
|
run: |
|
||||||
pip install -r requirements.txt
|
apt update -y
|
||||||
- name: Creating Database
|
apt install make -y
|
||||||
run: |
|
cd danix
|
||||||
python manage.py makemigrations
|
make install
|
||||||
python manage.py migrate
|
make aliases
|
||||||
- name: Run Danix
|
|
||||||
run: |
|
|
||||||
python danix.py
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue