charasheet/.github/workflows/test.yaml

27 lines
616 B
YAML
Raw Normal View History

2022-10-31 09:02:54 +01:00
name: Test
on:
workflow_call:
pull_request:
branches: [ "master" ]
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:
2022-11-01 08:18:33 +01:00
python-version: '3.11'
2022-12-10 01:00:10 +01:00
cache: pip
2022-10-31 09:02:54 +01:00
- name: Install dependencies
run: |
2022-12-10 01:00:10 +01:00
pip install pip-tools
pip-sync requirements.txt requirements-dev.txt
2022-10-31 09:02:54 +01:00
- name: Test
2022-12-10 01:17:30 +01:00
run: pytest --cov=. --cov-branch --cov-report term-missing:skip-covered
2022-10-31 09:02:54 +01:00
working-directory: ./src/