-
Notifications
You must be signed in to change notification settings - Fork 6
47 lines (44 loc) · 1.13 KB
/
windows.yml
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
38
39
40
41
42
43
44
45
46
47
name: windows
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *' # daily
jobs:
build:
name: Build py${{ matrix.python-version }} @ ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.12']
os: ['windows-latest']
steps:
- uses: actions/checkout@v4
with:
submodules: false
- name: Checkout Testdata
shell: bash -l {0}
run : |
git submodule init
git submodule update
- uses: conda-incubator/setup-miniconda@v3
with:
miniconda-version: "latest"
auto-update-conda: true
python-version: ${{ matrix.python-version }}
environment-file: environment.yml
activate-environment: pynetcf
auto-activate-base: false
- name: Print environment infos
shell: bash -l {0}
run: |
conda info -a
conda list
pip list
which pip
which python
- name: Install package and test
shell: bash -l {0}
run: |
pip install -e .[testing]
pytest --cache-clear