windows #469
This file contains 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: 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 |