diff --git a/.github/workflows/DjangoTest.yml b/.github/workflows/DjangoTest.yml new file mode 100644 index 0000000..80d2b12 --- /dev/null +++ b/.github/workflows/DjangoTest.yml @@ -0,0 +1,46 @@ +name: Django CI + +on: + push: + branches: ["develop"] + pull_request: + branches: ["develop"] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + max-parallel: 4 + matrix: + python-version: [3.7] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + python-version: ${{ matrix.python-version }} + + - name: Install Dependencies + working-directory: ./lvlgg_backend + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Lint with flake8 + working-directory: ./lvlgg_backend + run: | + pip install flake8 + flake8 + + - name: Coverage Report + working-directory: ./lvlgg_backend + run: | + pip install coverage + coverage run manage.py test + coverage report + + - name: Django Testing + working-directory: ./lvlgg_backend + run: | + python3 manage.py test