mirror of
https://github.com/YunoHost-Apps/django-for-runners_ynh.git
synced 2024-09-03 18:26:16 +02:00
run pytest via github actions, too.
This commit is contained in:
parent
9309b95959
commit
8ee6f05fc2
1 changed files with 41 additions and 0 deletions
41
.github/workflows/pytest.yml
vendored
Normal file
41
.github/workflows/pytest.yml
vendored
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
name: pytest
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 8 * * *'
|
||||||
|
push:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
max-parallel: 2
|
||||||
|
matrix:
|
||||||
|
python-version: [3.9, 3.8, 3.7]
|
||||||
|
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
|
Loading…
Reference in a new issue