File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -10,19 +10,22 @@ jobs:
1010 - name : Checkout repository
1111 uses : actions/checkout@v4
1212
13+ # channel-priority: true → flexible (기본값)
14+ # channel-priority: strict → 엄격히 우선순위 적용 (권장)
15+ # channel-priority: false → 전혀 우선순위 적용 안 함
1316 - name : Setup conda environment with python 3.9 and R
1417 uses : conda-incubator/setup-miniconda@v3
1518 with :
1619 activate-environment : python_3_with_R_and_tensorflow
1720 environment-file : testing/env_python_3_with_R_and_tensorflow.yml
1821 python-version : 3.9
1922 channels : conda-forge,defaults
20- channel-priority : true
23+ channel-priority : strict
2124 auto-activate-base : false
2225 use-mamba : true
2326
2427 - name : Verify environment is activated
2528 run : |
2629 which python
2730 python --version
28- conda info --envs
31+ conda info --envs
You can’t perform that action at this time.
0 commit comments