testing #53
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Testing 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-test.txt | |
- name: Run linting tools | |
run: | | |
cd app/ | |
ruff format . | |
- name: create logging folder | |
run: | | |
cd / | |
mkdir -p logging | |
ls -la | |
- name: Run Tests | |
run: | | |
cp .env.testing app/.env | |
cd app/ | |
mkdir -p static_files | |
ls -la | |
# python manage.py test |