Files
wger/.github/workflows/ci.yml
2022-07-01 10:50:15 +02:00

97 lines
2.8 KiB
YAML

name: Continous Integration
on:
push:
paths:
- '**.py'
- 'requirements.txt'
pull_request:
paths:
- '**.py'
- 'requirements.txt'
jobs:
ci-job:
runs-on: ubuntu-20.04
strategy:
max-parallel: 3
matrix:
#TODO: pypy3 has problems compiling lxml
python-version: [ '3.7', '3.8', '3.9', '3.10']
name: CI job (python ${{ matrix.python-version }})
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@v3
- name: Cache dependencies
uses: actions/cache@v3.0.4
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@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel coverage
pip install -r requirements_prod.txt
pip3 install -e .
# Only run the tests with coverage for one version of python
- name: Test the application with coverage (Postgres)
run: |
wger create-settings --database-type postgresql
coverage run --source='.' ./manage.py test
coverage html --directory coverage-postgres
coverage report
if: matrix.python-version == 3.8
- name: Test the application (Postgres)
run: |
wger create-settings --database-type postgresql
python manage.py test
if: matrix.python-version != 3.8
# - name: Test the application (Sqlite)
# run: |
# wger create-settings
# coverage run --source='.' ./manage.py test
# coverage html --directory coverage-sqlite
# coverage report
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: .coverage
if: matrix.python-version == 3.8
- name: Save coverage result artifacts
uses: actions/upload-artifact@v3
with:
name: coverage-results-${{ matrix.python-version }}
path: coverage-postgres/
if: matrix.python-version == 3.8