-
Notifications
You must be signed in to change notification settings - Fork 13
50 lines (46 loc) · 1.24 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
49
50
name: windows
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *' # daily
env:
PROJ_LIB: C:\Miniconda3\envs\equi7grid\Library\share\proj
USE_PATH_FOR_GDAL_PYTHON: YES
jobs:
build:
strategy:
matrix:
os: ["windows-latest"]
python-version: ['3.8', '3.9']
ymlfile: ['environment_win.yml']
name: Py${{ matrix.python-version }} @ ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: true # does not work with self-hosted testdata
fetch-depth: 0
- uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
auto-update-conda: true
python-version: ${{ matrix.python-version }}
environment-file: environment_win.yml
activate-environment: equi7grid
auto-activate-base: false
- name: Print infos
shell: bash -l {0}
run: |
git status
conda info -a
conda list
pip list
which pip
which python
which gdalwarp
- name: Install package and test
shell: bash -l {0}
run: |
pip install -e .[testing]
pytest --cache-clear