Skip to content

Commit

Permalink
add if back in
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelPesce committed Nov 21, 2024
1 parent 44090af commit 1256601
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,10 @@ jobs:
- name: Rename conda package cache
if: runner.os == 'Windows'
shell: bash
run: |
# Try renaming hardcoded directory
mv C:\\Users\\runneradmin\\conda_pkgs_dir C:\\Users\\runneradmin\\conda_pkgs_dir_do_not_cache
run: | # Try renaming hardcoded directory
if [ -d C:\\Users\\runneradmin\\conda_pkgs_dir ]; then
mv C:\\Users\\runneradmin\\conda_pkgs_dir C:\\Users\\runneradmin\\conda_pkgs_dir
fi
pytest:
name: pytest (${{ matrix.os }})
Expand Down

0 comments on commit 1256601

Please sign in to comment.