File tree Expand file tree Collapse file tree 2 files changed +33
-7
lines changed Expand file tree Collapse file tree 2 files changed +33
-7
lines changed Original file line number Diff line number Diff line change 1+ name : Build and Test
2+ on :
3+ push :
4+ branches : [main]
5+ pull_request :
6+ branches : [main]
7+
8+ jobs :
9+ build :
10+ runs-on : ubuntu-latest
11+ timeout-minutes : 15
12+ steps :
13+ - uses : actions/checkout@v3
14+ -
uses :
mamba-org/[email protected] 15+ with :
16+ environment-file : ./environment-dev.yml
17+ init-shell : bash
18+ create-args : --verbose
19+ cache-environment : true
20+ cache-downloads : false
21+
22+ - name : Test Ultraplot
23+ shell : bash -el {0}
24+ run : |
25+ micromamba activate ultraplot-dev
26+ pip install .
27+
28+ - name : " Build docs"
29+ shell : bash -el {0}
30+ run : |
31+ micromamba activate ultraplot-dev
32+ cd docs
33+ make html
Original file line number Diff line number Diff line change 2525 micromamba activate ultraplot-dev
2626 pip install .
2727 python -m pytest
28-
29- - name : " Build docs"
30- shell : bash -el {0}
31- run : |
32- micromamba activate ultraplot-dev
33- cd docs
34- make html
You can’t perform that action at this time.
0 commit comments