mirror of
https://github.com/YunoHost-Apps/pyinventory_ynh.git
synced 2024-09-03 20:16:09 +02:00
6b24640299
https://github.com/jedie/manageprojects and https://github.com/jedie/cookiecutter_templates/ Also: * update requirements * Remove Python 3.7 and 3.8 support * Add Python 3.11 to test matrix
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
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.11", "3.10", "3.9"]
|
|
steps:
|
|
- name: Checkout
|
|
run: |
|
|
echo $GITHUB_REF $GITHUB_SHA
|
|
git clone --depth 1 https://github.com/$GITHUB_REPOSITORY.git .
|
|
git fetch origin $GITHUB_SHA:temporary-ci-branch
|
|
git checkout $GITHUB_SHA || (git fetch && git checkout $GITHUB_SHA)
|
|
|
|
- name: 'Set up Python ${{ matrix.python-version }}'
|
|
uses: actions/setup-python@v4
|
|
# https://github.com/marketplace/actions/setup-python
|
|
with:
|
|
python-version: '${{ matrix.python-version }}'
|
|
cache: 'pip' # caching pip dependencies
|
|
cache-dependency-path: '**/poetry.lock'
|
|
|
|
- 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: 'Run Safety check'
|
|
run: |
|
|
make safety
|
|
|
|
- name: 'Upload coverage report'
|
|
uses: codecov/codecov-action@v3
|
|
# https://github.com/marketplace/actions/codecov
|
|
with:
|
|
fail_ci_if_error: false
|
|
verbose: true
|
|
|