-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (45 loc) · 1.25 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
48
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.8', '3.9', '3.10']
os: ['windows-latest']
steps:
- uses: actions/checkout@v2
with:
submodules: false # does not work with self-hosted testdata
- name: Checkout Testdata
shell: bash -l {0}
run : |
git submodule init
git submodule update
- uses: conda-incubator/[email protected]
with:
miniconda-version: "latest"
auto-update-conda: true
python-version: ${{ matrix.python-version }}
environment-file: environment.yml
activate-environment: cadati_env
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 .
pip install pytest==6.2.5 tomli==1.2.3 pytest-cov==2.12.1
python setup.py test