Skip to content

Callbacks for resetting, and minor fixes #354

Callbacks for resetting, and minor fixes

Callbacks for resetting, and minor fixes #354

Workflow file for this run

name: CI Paricia
on: [push]
jobs:
qa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: pre-commit/[email protected]
test:
needs: qa
runs-on: ubuntu-latest
services:
postgres:
image: timescale/timescaledb-ha:pg14-latest
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run migrations
run: python manage.py migrate
- name: Run tests
run: python manage.py test -v 2