django_example_ynh/.github/workflows/pytest.yml

57 lines
1.1 KiB
YAML
Raw Normal View History

2020-12-23 19:53:13 +01:00
name: pytest
on:
2022-04-02 20:07:31 +02:00
push:
branches:
- master
pull_request:
2020-12-23 19:53:13 +01:00
schedule:
- cron: '0 8 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
2022-12-21 20:02:02 +01:00
python-version: ["3.11", "3.10", "3.9"]
2020-12-23 19:53:13 +01:00
steps:
2022-04-02 20:07:31 +02:00
- uses: actions/checkout@v2
2022-08-14 14:16:46 +02:00
with:
fetch-depth: 0
- name: 'fetch master'
run: |
git fetch origin master
2020-12-23 19:53:13 +01:00
- name: 'Set up Python ${{ matrix.python-version }}'
2022-04-02 20:07:31 +02:00
uses: actions/setup-python@v2
2020-12-23 19:53:13 +01:00
with:
python-version: '${{ matrix.python-version }}'
2022-08-23 17:48:05 +02:00
- uses: actions/cache@v2
with:
path: ~/.cache/
key: dot-cache-files
2020-12-23 19:53:13 +01: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
2020-12-23 19:53:13 +01:00
- name: 'Run Safety check'
run: |
make safety
2020-12-23 19:53:13 +01:00
- name: 'Upload coverage report'
2022-08-14 14:16:46 +02:00
uses: codecov/codecov-action@v2
2022-08-12 17:56:02 +02:00
with:
fail_ci_if_error: false
verbose: true