Skip to content

Commit

Permalink
Create DjangoTest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Thamira2001 committed Feb 20, 2024
1 parent a4db12f commit cbe7883
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/DjangoTest.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit cbe7883

Please sign in to comment.