[pre-commit.ci] pre-commit autoupdate #867
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: Tests Windows | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 1 * *' # Run at 00:00 UTC on the 1st day of every month | |
| jobs: | |
| tests: | |
| name: Test on ${{ matrix.os }}, Python ${{ matrix.python-version }}${{ matrix.experimental && ' with latest dependencies' || '' }} | |
| runs-on: ${{ matrix.os }} | |
| defaults: | |
| run: | |
| shell: bash -el {0} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ["windows-latest"] | |
| python-version: ["3.11", "3.12", "3.13", "3.14"] | |
| experimental: [false] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up micromamba and install package dependencies | |
| uses: mamba-org/setup-micromamba@v2 | |
| with: | |
| environment-file: ${{ matrix.experimental && 'ci/environment_latest.yml' || 'ci/environment.yml' }} | |
| create-args: >- | |
| python=${{ matrix.python-version }} | |
| init-shell: >- | |
| bash | |
| - name: Install pytmatrix-lte | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install git+https://github.com/ltelab/pytmatrix-lte.git | |
| - name: Install the package | |
| run: | | |
| pip install -e . | |
| - name: Test the package with pytest | |
| run: | | |
| pytest |