ci: add zmq extra for mypy test #1120
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "windows tests for 'kiara'" | |
| # This workflow is triggered on pushes to the repository. | |
| on: [push] | |
| jobs: | |
| test-windows: | |
| name: pytest on windows | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| python_version: ["3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| enable-cache: true | |
| - name: create lockfile | |
| run: uv lock --python ${{ matrix.python_version }} | |
| - name: add core_types plugin | |
| run: uv add git+https://github.com/DHARPA-project/kiara_plugin.core_types@develop | |
| - name: add tabular plugin | |
| run: uv add git+https://github.com/DHARPA-project/kiara_plugin.tabular@develop | |
| - name: install the project | |
| run: uv sync --locked --dev --python ${{ matrix.python_version }} | |
| - name: display installed kiara and module package versions | |
| run: uv pip list | grep kiara | |
| - name: Test with pytest | |
| run: make test |