1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pyinventory_ynh.git synced 2024-09-03 20:16:09 +02:00
pyinventory_ynh/.github/workflows/pytest.yml

60 lines
1.4 KiB
YAML
Raw Normal View History

2020-12-29 13:58:51 +01:00
name: pytest
on:
2021-11-22 19:59:56 +01:00
push:
branches:
2022-01-30 15:02:51 +01:00
- master
2021-11-22 19:59:56 +01:00
pull_request:
2020-12-29 13:58:51 +01:00
schedule:
- cron: '0 8 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
python-version: ["3.11", "3.10", "3.9"]
2020-12-29 13:58:51 +01:00
steps:
- name: Checkout
2022-01-30 15:02:51 +01:00
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)
2020-12-29 13:58:51 +01:00
- name: 'Set up Python ${{ matrix.python-version }}'
uses: actions/setup-python@v4
# https://github.com/marketplace/actions/setup-python
2020-12-29 13:58:51 +01:00
with:
python-version: '${{ matrix.python-version }}'
cache: 'pip' # caching pip dependencies
cache-dependency-path: '**/poetry.lock'
2022-09-13 21:08:58 +02:00
2020-12-29 13:58:51 +01:00
- name: 'Install package'
run: |
pip3 install poetry
2020-12-29 13:58:51 +01:00
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
2020-12-29 13:58:51 +01:00
- name: 'Upload coverage report'
uses: codecov/codecov-action@v3
# https://github.com/marketplace/actions/codecov
2022-07-22 19:40:02 +02:00
with:
fail_ci_if_error: false
verbose: true