File tree 1 file changed +6
-13
lines changed
1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change 96
96
java-version : ${{ matrix.java }}
97
97
98
98
# "Setup Python" can be skipped if jupyter notebook analysis-results aren't needed
99
- - name : (Python Setup) Setup Cache for Conda package manager Miniforge
100
- uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
101
- env :
102
- # Increase this value to reset cache if etc/example-environment.yml has not changed
103
- # Reference: https://github.com/conda-incubator/setup-miniconda#caching
104
- CACHE_NUMBER : 0
105
- with :
106
- path : ~/conda_pkgs_dir
107
- key :
108
- ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-environments-${{hashFiles('**/environment.yml', '.github/workflows/*.yml') }}
109
-
110
99
- name : (Python Setup) Use version ${{ matrix.python }} with Conda package manager Miniforge
111
100
uses : conda-incubator/setup-miniconda@505e6394dae86d6a5c7fbb6e3fb8938e3e863830 # v3
112
101
with :
@@ -115,10 +104,14 @@ jobs:
115
104
activate-environment : codegraph
116
105
environment-file : ./jupyter/environment.yml
117
106
auto-activate-base : false
118
- use-only-tar-bz2 : true # IMPORTANT: This needs to be set for caching to work properly!
107
+ show-channel-urls : true
119
108
- name : (Python Setup) Conda environment info
120
109
shell : bash -el {0}
121
- run : conda info
110
+ run : |
111
+ conda info
112
+ conda list
113
+ conda config --show-sources
114
+ conda config --show
122
115
123
116
- name : (Code Analysis Setup) Setup Cache Analysis Downloads
124
117
uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
You can’t perform that action at this time.
0 commit comments