wulkanowy-web/.github/workflows/backend.yml

28 lines
919 B
YAML
Raw Normal View History

2021-01-07 00:48:06 +01:00
name: Python application
on: [push]
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:10.8
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@v1
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: psycopg2 prerequisites
run: sudo apt-get install python-dev libpq-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest-django
- name: Run tests
run: python manage.py test