File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -37,18 +37,22 @@ jobs:
37
37
- name : Setup Miniconda
38
38
uses : conda-incubator/setup-miniconda@v2.0.0
39
39
with :
40
- auto-update-conda : true
41
40
python-version : ${{ matrix.python-version }}
41
+ mamba-version : " *"
42
+ auto-update-conda : true
42
43
channels : conda-forge
43
44
channel-priority : flexible
44
45
activate-environment : test-environment
45
46
46
47
- name : Install dependencies
47
48
env :
48
49
PACKAGES : ${{env.MINIMAL_DEPENDENCIES}} ${{env.OPTIONAL_DEPENDENCIES}} ${{env.TEST_DEPENDENCIES}}
49
- PYSTEPS_DATA_PATH : ${{github.workspace}}/pysteps_data
50
50
run : |
51
- conda install --quiet ${{env.PACKAGES}}
51
+ if [ "$RUNNER_OS" == "Windows" ]; then
52
+ mamba.bat install --quiet ${{env.PACKAGES}}
53
+ else
54
+ mamba install --quiet ${{env.PACKAGES}}
55
+ fi
52
56
pip install -U cookiecutter
53
57
54
58
- name : Install pysteps for MacOS
Original file line number Diff line number Diff line change @@ -80,8 +80,14 @@ venv.bak/
80
80
.spyderproject
81
81
.spyproject
82
82
83
+ # VSCode
84
+ .vscode
85
+
83
86
# Rope project settings
84
87
.ropeproject
85
88
86
89
# mypy
87
90
.mypy_cache /
91
+
92
+ # Mac OS Stuff
93
+ .DS_Store
You can’t perform that action at this time.
0 commit comments