This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/.github/workflows/test.yaml

36 lines
950 B
YAML
Raw Permalink Normal View History

2022-10-10 22:52:33 +02:00
name: Test
on:
2023-01-30 20:21:32 +01:00
workflow_dispatch:
2022-10-10 23:16:04 +02:00
workflow_call:
2022-10-10 22:52:33 +02:00
permissions:
contents: read
2022-10-10 22:52:33 +02:00
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-12-19 22:15:05 +01:00
python-version: '3.11'
cache: pip
2022-10-10 22:52:33 +02:00
- name: Install dependencies
2022-10-10 23:14:18 +02:00
run: |
2022-12-19 22:15:05 +01:00
pip install pip-tools
pip-sync requirements.txt requirements-dev.txt
- name: Setup pre-commit cache
uses: actions/cache@v3
with:
path: ~/.cache/pre-commit
key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Check pre-commit
run: pre-commit run --show-diff-on-failure --color=always --all-files
2022-10-10 22:52:33 +02:00
- name: Test
2022-12-19 22:15:05 +01:00
run: pytest --cov=. --cov-branch --cov-report term-missing:skip-covered
2022-10-10 22:52:33 +02:00
working-directory: ./src/