django-for-runners_ynh/.github/workflows/pytest.yml

45 lines
917 B
YAML
Raw Normal View History

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:
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 }}'
- 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