2022-04-02 17:44:57 +02:00
|
|
|
name: pytest
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 8 * * *'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
max-parallel: 2
|
|
|
|
matrix:
|
2022-04-02 20:16:28 +02:00
|
|
|
python-version: ["3.10", "3.9", "3.8", "3.7"]
|
2022-04-02 17:44:57 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: 'fetch master'
|
|
|
|
run: |
|
|
|
|
git fetch origin master
|
|
|
|
- name: 'Set up Python ${{ matrix.python-version }}'
|
2022-04-02 20:16:28 +02:00
|
|
|
uses: actions/setup-python@v2
|
2022-04-02 17:44:57 +02:00
|
|
|
with:
|
|
|
|
python-version: '${{ matrix.python-version }}'
|
|
|
|
|
2022-10-04 17:52:42 +02:00
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.cache/
|
|
|
|
key: dot-cache-files
|
|
|
|
|
2022-04-02 17:44:57 +02:00
|
|
|
- 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
|
|
|
|
|
2022-10-04 17:52:42 +02:00
|
|
|
- name: 'Run Safety check'
|
|
|
|
run: |
|
|
|
|
make safety
|
|
|
|
|
2022-04-02 17:44:57 +02:00
|
|
|
- name: 'Upload coverage report'
|
2022-08-16 09:47:54 +02:00
|
|
|
uses: codecov/codecov-action@v2
|
|
|
|
with:
|
|
|
|
fail_ci_if_error: false
|
|
|
|
verbose: true
|