2021-10-10 14:38:40 +02:00
|
|
|
name: pytest
|
|
|
|
|
|
|
|
on:
|
2021-10-10 14:35:06 +02:00
|
|
|
push:
|
2021-10-10 14:38:40 +02:00
|
|
|
branches:
|
|
|
|
- main
|
2021-10-10 14:35:06 +02:00
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 8 * * *'
|
2021-10-10 14:38:40 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
max-parallel: 2
|
|
|
|
matrix:
|
2022-04-15 16:42:36 +02:00
|
|
|
python-version: ["3.10", "3.9", "3.8", "3.7"]
|
2021-10-10 14:38:40 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: 'Set up Python ${{ matrix.python-version }}'
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: '${{ matrix.python-version }}'
|
|
|
|
|
2022-09-18 17:39:28 +02:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.cache/
|
|
|
|
key: dot-cache-files
|
|
|
|
|
2021-10-10 14:38:40 +02:00
|
|
|
- name: 'Install package'
|
|
|
|
run: |
|
2022-09-18 19:12:38 +02:00
|
|
|
make install-poetry
|
2021-10-10 14:38:40 +02:00
|
|
|
make install
|
|
|
|
|
|
|
|
- name: 'List installed packages'
|
|
|
|
run: |
|
|
|
|
poetry run pip freeze
|
|
|
|
|
|
|
|
- name: 'Run tests with Python v${{ matrix.python-version }}'
|
|
|
|
run: |
|
|
|
|
make pytest
|
|
|
|
|
2022-09-18 18:58:52 +02:00
|
|
|
- name: 'Run Safety check'
|
|
|
|
run: |
|
|
|
|
make safety
|
|
|
|
|
2021-10-10 14:38:40 +02:00
|
|
|
- name: 'Upload coverage report'
|
2022-09-18 17:39:38 +02:00
|
|
|
uses: codecov/codecov-action@v2
|
|
|
|
with:
|
|
|
|
fail_ci_if_error: false
|
|
|
|
verbose: true
|