chore: fix linting & mypy issues #1075
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"] | |
| steps: | |
| - name: "Set up Python ${{ matrix.python_version }}" | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "${{ matrix.python_version }}" | |
| - name: pip cache | |
| id: pip-cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/pip | |
| key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.*') }} | |
| - uses: actions/checkout@v4 | |
| - name: install core_types plugin | |
| run: pip install -U git+https://github.com/DHARPA-project/kiara_plugin.core_types@develop | |
| - name: install tabular types plugin | |
| run: pip install -U git+https://github.com/DHARPA-project/kiara_plugin.tabular@develop | |
| - name: install kiara | |
| run: pip install --prefer-binary -U .[dev_testing] | |
| - name: test with pytest | |
| run: py.test |