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

50 lines
1,012 B
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.9, 3.8, 3.7]
steps:
2022-01-30 15:02:51 +01:00
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: 'fetch master'
run: |
git fetch origin master
2020-12-29 13:58:51 +01:00
- name: 'Set up Python ${{ matrix.python-version }}'
uses: actions/setup-python@v1
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'
run: bash <(curl -s https://codecov.io/bash)
- name: 'Run linters'
if: matrix.python-version == '3.8'
run: |
make lint