mirror of
https://github.com/wger-project/wger.git
synced 2026-02-18 00:17:51 +01:00
65 lines
1.8 KiB
YAML
65 lines
1.8 KiB
YAML
name: Continous Integration
|
|
|
|
on: [pull_request, push]
|
|
|
|
jobs:
|
|
ci-job:
|
|
runs-on: ubuntu-20.04
|
|
strategy:
|
|
matrix:
|
|
python-version: [ 3.6, 3.7, 3.8, pypy3 ]
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:12.0-alpine
|
|
env:
|
|
POSTGRES_USER: wger
|
|
POSTGRES_PASSWORD: wger
|
|
POSTGRES_DB: wger
|
|
ports:
|
|
- 5432:5432
|
|
# needed because the postgres container does not provide a health check
|
|
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.cache/pip
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pip-
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install wheel coverage
|
|
pip install -r requirements_prod.txt
|
|
python setup.py develop
|
|
|
|
- name: Test the application (Postgres)
|
|
run: |
|
|
wger create-settings --database-type postgresql
|
|
coverage run --source='.' python manage.py test
|
|
coverage html --directory coverage-postgres
|
|
|
|
# - name: Test the application (Sqlite)
|
|
# run: |
|
|
# wger create-settings
|
|
# coverage run --source='.' python manage.py test
|
|
# coverage html --directory coverage-sqlite
|
|
|
|
- name: Save coverage result artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: coverage-results-${{ matrix.python-version }}
|
|
path: coverage-postgres/
|