Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

fixed bugs on showing stats on last question #20

fixed bugs on showing stats on last question

fixed bugs on showing stats on last question #20

Workflow file for this run

name: Django Test CI
on:
push:
branches: ["main", "develop"]
pull_request:
branches: ["main", "develop"]
jobs:
build:
runs-on: ubuntu-latest
services:
database:
image: postgres:14.1
env:
POSTGRES_DB: wits
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis:7.0
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
strategy:
max-parallel: 1
matrix:
python-version: [3.10.12]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: python -m pip install --upgrade pip
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run Tests
run: cd src && python manage.py test
env:
FIELD_KEY: "INSECURE_TEST_KEY"
SECRET_KEY: "django-insecure-!=_mi0j#rhk7c9p-0wg-3me6y&fk$+fahz6fh)k1n#&@s(9vf5"
DEBUG: False
DATABASE_URL: postgres://postgres:postgres@localhost:5432/wits
DATABASE_HOST: localhost
REDIS_URL: redis://localhost:6379
REDIS_HOST: localhost
REDIS_PORT: 6379