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
|
||||
|
||||
on: pull_request
|
||||
on: push
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
push:
|
||||
branches: [dev]
|
||||
|
||||
jobs:
|
||||
continuous-integration:
|
||||
|
|
@ -11,16 +14,14 @@ jobs:
|
|||
- uses: actions/checkout@v3
|
||||
- name: Test
|
||||
- uses: actions/setup-python@v2
|
||||
- shell: bash
|
||||
- with:
|
||||
python-version: 3.11
|
||||
- name: Install Requirements
|
||||
- name: Install danix
|
||||
run: |
|
||||
pip install -r requirements.txt
|
||||
- name: Creating Database
|
||||
run: |
|
||||
python manage.py makemigrations
|
||||
python manage.py migrate
|
||||
- name: Run Danix
|
||||
run: |
|
||||
python danix.py
|
||||
apt update -y
|
||||
apt install make -y
|
||||
cd danix
|
||||
make install
|
||||
make aliases
|
||||
|
||||
|
|
|
|||
|
|
@ -105,4 +105,4 @@ clean:
|
|||
|
||||
@rm -r $(MAIN_REPO) > /dev/null 2>&1
|
||||
@rm -r $(DANIX_PATH) > /dev/null 2>&1
|
||||
@echo Danix cleaned!
|
||||
@echo Danix cleaned!
|
||||
|
|
|
|||
Loading…
Reference in New Issue