Skip to content

Commit

Permalink
conda init environment
Browse files Browse the repository at this point in the history
  • Loading branch information
kcartier-wri committed Sep 12, 2024
1 parent 8efab9a commit cbebdcc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/dev_ci_cd_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
- name: Install Linux dependencies
run: |
Expand All @@ -29,7 +30,9 @@ jobs:
conda env create --name env --file=.github/environment.yml --yes
conda install gdal --yes
conda upgrade numpy --yes
source ~/.bashrc
- name: Initialize Environment
shell: bash -el {0}
run: |
conda init --all --quiet
conda activate env
- name: Run Tests
Expand Down

0 comments on commit cbebdcc

Please sign in to comment.