File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : " *"
6+ pull_request :
7+ branches : master
8+
9+ jobs :
10+ test :
11+ name : ${{ matrix.CONDA_ENV }}-build
12+ runs-on : ubuntu-latest
13+ strategy :
14+ fail-fast : false
15+ matrix :
16+ CONDA_ENV : [36, 36-defaults, 37-nodefaults]
17+ steps :
18+ - name : Checkout
19+ uses : actions/checkout@v2
20+
21+ - name : Setup Miniconda
22+ uses : conda-incubator/setup-miniconda@v1
23+ with :
24+ auto-update-conda : true
25+ auto-activate-base : false
26+ activate-environment : test_env
27+ environment-file : ci/environment-${{ matrix.CONDA_ENV }}.yml
28+
29+ - name : Development Install Intake-Xarray
30+ shell : bash -l {0}
31+ run : |
32+ python -m pip install --no-deps -e .
33+ conda list
34+
35+ - name : Run Tests
36+ shell : bash -l {0}
37+ run : |
38+ pytest --verbose
You can’t perform that action at this time.
0 commit comments