mirror of
https://github.com/Crocmagnon/cookiecutter-django.git
synced 2024-11-05 14:33:55 +01:00
30 lines
674 B
YAML
30 lines
674 B
YAML
|
name: Test
|
||
|
|
||
|
on:
|
||
|
workflow_call:
|
||
|
pull_request:
|
||
|
branches: [ "master" ]
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
|
||
|
jobs:
|
||
|
tests:
|
||
|
name: Python tests
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Set up Python
|
||
|
uses: actions/setup-python@v4
|
||
|
with:
|
||
|
python-version: '{{cookiecutter.python_version}}'
|
||
|
cache: pip
|
||
|
- name: Install dependencies
|
||
|
run: |
|
||
|
pip install pip-tools
|
||
|
pip-sync requirements.txt requirements-dev.txt
|
||
|
- name: Test
|
||
|
run: pytest --cov=. --cov-branch --cov-report term-missing:skip-covered
|
||
|
working-directory: ./src/
|