Make the total row bold #135
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build p0sx-Server | |
on: [push] | |
env: | |
POSTGRES_USER: "postgres" | |
POSTGRES_PASSWORD: "postgres" | |
POSTGRES_DB: "github_actions" | |
POSTGRES_HOST: "localhost" | |
ALLOWED_HOSTS: '*' | |
SECRET_KEY: "testingonetwoonetwo" | |
SITE_URL: "localhost" | |
DJANGO_SETTINGS_MODULE: "p0sx.settings.env" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
env: | |
POSTGRES_USER: "postgres" | |
POSTGRES_PASSWORD: "postgres" | |
POSTGRES_DB: "github_actions" | |
image: postgres:11.7-alpine | |
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 python-dev libpq-dev | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements/base.txt | |
pip install -r requirements/lint.txt | |
pip install -r requirements/production.txt | |
- name: Run migrations | |
run: cd p0sx && python manage.py migrate | |
- name: Run tests | |
run: cd p0sx && python manage.py test | |
- name: Lint with flake8 | |
run: | | |
pip install flake8 | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 p0sx --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 p0sx --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics |