-
Notifications
You must be signed in to change notification settings - Fork 6
37 lines (37 loc) · 1.13 KB
/
tests_windows.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
name: Tests
on: [push, pull_request, workflow_dispatch]
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.9", "3.10", "3.11", "3.12"]
experimental: [false]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up micromamba and install package dependencies
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ${{ matrix.experimental && 'ci/environment_latest.yaml' || 'ci/environment.yaml' }}
create-args: >-
python=${{ matrix.python-version }}
init-shell: >-
bash
- name: Install the package
run: |
pip uninstall -y matplotlib # have matplotlib reinstalled for consistent plotting tests
pip install -e ".[dev]"
- name: Test with pytest
run: |-
pytest