Skip to content

e update checkout action & config not using dashes #230

e update checkout action & config not using dashes

e update checkout action & config not using dashes #230

name: geospade_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']
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 }}
mamba-version: "*"
channels: conda-forge,defaults
environment-file: conda_env.yml
activate-environment: geospade
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 .
python setup.py test