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

28 lines
636 B
YAML
Raw Normal View History

2022-10-10 22:52:33 +02:00
name: Test
on:
2022-10-10 23:16:04 +02:00
workflow_call:
2022-10-10 22:52:33 +02:00
pull_request:
branches: [ "master" ]
jobs:
tests:
name: Python tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry==1.1.15
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: poetry
- name: Install dependencies
2022-10-10 23:14:18 +02:00
run: |
poetry install
2022-10-10 22:52:33 +02:00
- name: Test
run: poetry run pytest --cov=. --cov-branch --cov-report term-missing:skip-covered
working-directory: ./src/