mirror of
https://github.com/Crocmagnon/cookiecutter-django.git
synced 2024-11-05 06:23:54 +01:00
32 lines
750 B
YAML
32 lines
750 B
YAML
name: Test
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
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: Ruff
|
|
run: ruff --format=github .
|
|
- name: Test
|
|
run: pytest --cov=. --cov-branch --cov-report term-missing:skip-covered
|
|
working-directory: ./src/
|