Skip to content

Commit ae2fa7b

Browse files
committed
channel-priority: strict
1 parent 97a8ff1 commit ae2fa7b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test-conda-env.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)