Windows installer, reorganize workflows

This commit is contained in:
2023-03-28 00:12:32 +02:00
parent b3834edaee
commit 7194a335dd
10 changed files with 127 additions and 40 deletions

View File

@@ -8,11 +8,15 @@ on:
required: true
type: string
name: Workflow - Test
jobs:
test:
name: Run tests
runs-on: ${{ inputs.os }}
steps:
- uses: actions/checkout@v3
name: Checkout
- name: Set up Python ${{ inputs.python-version }}
uses: actions/setup-python@v4
with:
@@ -21,5 +25,5 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install .
- name: Test
run: python -m unittest discover -v -s ./tests -p "test_*.py"
- name: Run tests
run: python -m unittest discover -v -s ./tests -p "test_*.py"