Skip to content

Tests

Tests #303

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [main, test]
merge_group:
jobs:
packaging:
name: Python packaging
uses: tskit-dev/.github/.github/workflows/python-packaging.yml@v14
with:
pyproject-directory: python
cli-test-cmd: kastore --help
test-c:
name: C tests
uses: tskit-dev/.github/.github/workflows/c-tests.yml@v14
with:
library-directory: c
secrets: inherit
test-python-c:
name: Python-C tests
uses: tskit-dev/.github/.github/workflows/python-c-tests.yml@v14
with:
tests: python/tests/test_python_c.py
pyproject-directory: python
secrets: inherit
test:
name: Python
uses: tskit-dev/.github/.github/workflows/python-tests.yml@v14
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python }}
pyproject-directory: python
coverage-directory: python/kastore
secrets: inherit
strategy:
matrix:
python: [ 3.11, 3.14 ]
os: [ macos-latest, ubuntu-24.04, windows-latest ]