chore: sync project template #19
This file contains 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_plugin.topic_modelling'" | |
# 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.8", "3.9", "3.10", "3.11"] | |
steps: | |
- name: "Set up Python ${{ matrix.python_version }}" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "${{ matrix.python_version }}" | |
- uses: actions/checkout@v3 | |
- name: install kiara_plugin.topic_modelling | |
run: pip install -U .[dev_testing] | |
- name: Test with pytest | |
run: make test |