From 2da93a09777b1fa1e2e14f6fd1d47af7f897a1ba Mon Sep 17 00:00:00 2001 From: Vinicius Silva Date: Mon, 25 Dec 2023 20:30:36 -0300 Subject: [PATCH] On branch dev Your branch is up to date with 'origin/dev'. Changes to be committed: modified: .github/workflows/test.yml modified: danix/makefile --- .github/workflows/test.yml | 23 ++++++++++++----------- danix/makefile | 2 +- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4a38802..2f5b2c4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/danix/makefile b/danix/makefile index 242b9a1..65f6d78 100644 --- a/danix/makefile +++ b/danix/makefile @@ -105,4 +105,4 @@ clean: @rm -r $(MAIN_REPO) > /dev/null 2>&1 @rm -r $(DANIX_PATH) > /dev/null 2>&1 - @echo Danix cleaned! \ No newline at end of file + @echo Danix cleaned!