Skip to content

Add GitHub actions: windows unit tests #2

Add GitHub actions: windows unit tests

Add GitHub actions: windows unit tests #2

Workflow file for this run

name: Tests

Check failure on line 1 in .github/workflows/tests.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yaml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: gha-conclusion
on:
push:
branches:
- '6.x'
pull_request:
branches:
- '6.x'
jobs:
win-unit-tests:
name: Windows Unit Tests
runs-on: windows-latest
strategy:
matrix:
python-version:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Run unit tests
run: python testkit/unittests.py
gha-conclusion:
name: GHA Conclusion
runs-on: ubuntu-latest
needs: win-unit-tests