Skip to content

Commit

Permalink
yet another try to first remove /home/runner/miniconda3
Browse files Browse the repository at this point in the history
  • Loading branch information
LMBradford committed Nov 21, 2024
1 parent d63b41b commit e0f0453
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Deactivate any active Conda environment
run: |
if [ -d "/home/runner/miniconda3" ]; then
source /home/runner/miniconda3/bin/activate
conda deactivate
fi
- name: Remove existing Conda environment
run: |
if [ -d "/home/runner/miniconda3" ]; then
Expand Down

0 comments on commit e0f0453

Please sign in to comment.