mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-05 14:23:53 +01:00
42 lines
1 KiB
YAML
42 lines
1 KiB
YAML
name: Test
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
context:
|
|
name: Display context
|
|
runs-on: ubuntu-latest
|
|
if: >-
|
|
github.event.pull_request
|
|
&& github.event.pull_request.merged == false
|
|
steps:
|
|
- run: echo "${{github.event.pull_request.user.login}}"
|
|
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: '3.11'
|
|
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/
|
|
- name: Check pre-commit
|
|
run: pre-commit run --all-files
|