Reusable tests

This commit is contained in:
2023-03-27 11:13:38 +02:00
parent 6675c003e7
commit 6ee8c7fe75
2 changed files with 30 additions and 17 deletions

25
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
on:
workflow_call:
inputs:
python-version:
required: true
type: string
os:
required: true
type: string
jobs:
reusable_workflow_job:
runs-on: ${{ inputs.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ inputs.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ inputs.python-version }}
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install .
- name: Test
run: python -m unittest discover -v -s ./tests -p "test_*.py"