Skip to content

Commit

Permalink
More path fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
karthiknadig committed Jun 5, 2024
1 parent 036850f commit 3770e24
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ jobs:

- name: Add Conda to PATH
if: startsWith( matrix.os, 'windows')
run: echo "PATH=$PATH;/c/Miniconda/condabin" >> $GITHUB_ENV
run: echo "PATH=$PATH:/c/Miniconda/condabin" >> $GITHUB_ENV
shell: bash

- name: Add Conda to PATH
if: startsWith( matrix.os, 'ubuntu')
run: echo "PATH=$PATH;$CONDA/condabin" >> $GITHUB_ENV
run: echo "PATH=$PATH:$CONDA/condabin" >> $GITHUB_ENV
shell: bash

- name: Install Conda + add to PATH
Expand All @@ -75,13 +75,15 @@ jobs:

- name: Check Conda version
run: conda info --all
shell: bash

- name: Create Conda Environment
run: |
conda create -n test-env1 python=3.12 -y
conda create -n test-env-no-python -y
conda create -p ./prefix-envs/.conda1 python=3.12 -y
conda create -p ./prefix-envs/.conda-nopy -y
shell: bash

- name: Install pipenv
run: pip install pipenv
Expand Down

0 comments on commit 3770e24

Please sign in to comment.