Files
wger/.github/workflows/ci.yml

82 lines
2.1 KiB
YAML

name: Continous Integration
on:
push:
paths:
- '**.py'
- 'requirements.txt'
pull_request:
paths:
- '**.py'
- 'requirements.txt'
jobs:
ci-job:
runs-on: ubuntu-latest
strategy:
matrix:
#TODO: pypy3 has problems compiling lxml
python-version: [ '3.9', '3.10']
name: CI job (python ${{ matrix.python-version }})
#services:
# postgres:
# image: postgres:12-alpine
# env:
# POSTGRES_USER: wger
# POSTGRES_PASSWORD: wger
# POSTGRES_DB: wger
# ports:
# - 5432:5432
# 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.8
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
run: |
wger create-settings
coverage run --source='.' ./manage.py test
coverage lcov
if: matrix.python-version == 3.10
- name: Test the application
run: |
wger create-settings
python manage.py test
if: matrix.python-version != 3.10
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.lcov
if: matrix.python-version == 3.10