Skip to content

added logging

added logging #30

Workflow file for this run

name: Django CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r backend/requirements.txt
- name: Run migrations
run: |
cd backend
python manage.py migrate --noinput
- name: Run tests
run: |
cd backend
python manage.py test