mirror of
https://github.com/YunoHost-Apps/django_example_ynh.git
synced 2024-09-03 18:26:21 +02:00
47 lines
980 B
YAML
47 lines
980 B
YAML
name: pytest
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 8 * * *'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
max-parallel: 2
|
|
matrix:
|
|
python-version: ["3.10", "3.9", "3.8", "3.7"]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: 'fetch master'
|
|
run: |
|
|
git fetch origin master
|
|
- name: 'Set up Python ${{ matrix.python-version }}'
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '${{ matrix.python-version }}'
|
|
|
|
- name: 'Install package'
|
|
run: |
|
|
pip3 install poetry
|
|
make install
|
|
|
|
- name: 'List installed packages'
|
|
run: |
|
|
poetry run pip freeze
|
|
|
|
- name: 'Run tests with Python v${{ matrix.python-version }}'
|
|
run: |
|
|
make pytest
|
|
|
|
- name: 'Upload coverage report'
|
|
uses: codecov/codecov-action@v2
|
|
with:
|
|
fail_ci_if_error: false
|
|
verbose: true
|