Skip to content

added dev requirement file #5

added dev requirement file

added dev requirement file #5

Workflow file for this run

name: test_Django
on: [ pull_request, push ] # activates the workflow when there is a push or pull request in the repo
jobs:
test_project:
runs-on: ubuntu-latest # operating system your code will run on
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run linting tools
run: |
cd app/
ruff format .
- name: Run Tests
run: |
cd app/
ls -al
# python manage.py test