Skip to content

Instantly share code, notes, and snippets.

@ayoubbensakhria
Last active May 15, 2021 23:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayoubbensakhria/411baefab531c62e547d060158686c05 to your computer and use it in GitHub Desktop.
Save ayoubbensakhria/411baefab531c62e547d060158686c05 to your computer and use it in GitHub Desktop.
name: Python application
on: [push]
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:10.8
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: github_actions
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.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: psycopg2 prerequisites
run: sudo apt-get install libpq-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest-django
- name: Run migrations
run: python manage.py migrate
- name: Run tests
run: py.test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment