Skip to content

Commit

Permalink
Debug conda
Browse files Browse the repository at this point in the history
  • Loading branch information
karthiknadig committed Jun 5, 2024
1 parent 63f8402 commit 3d278c0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,15 @@ jobs:

- name: Add Conda to PATH
if: startsWith( matrix.os, 'windows')
run: echo "PATH=%PATH%;%CONDA%/bin" >> "$GITHUB_ENV"
run: |
echo %CONDA%
echo "PATH=%PATH%;%CONDA%/bin" >> $GITHUB_ENV
- name: Add Conda to PATH
if: startsWith( matrix.os, 'ubuntu') || startsWith( matrix.os, 'macos')
run: echo "PATH=$PATH:$CONDA/bin" >> "$GITHUB_ENV"
run: |
echo $CONDA
echo "PATH=$PATH:$CONDA/bin" >> $GITHUB_ENV
- name: Check Conda version
run: conda info --all
Expand Down

0 comments on commit 3d278c0

Please sign in to comment.