From 9e44b0f4f2a32b5a53b1b43fe0cc5ef26ba6aa42 Mon Sep 17 00:00:00 2001 From: drpatelh Date: Wed, 3 Feb 2021 12:57:55 +0000 Subject: [PATCH] Add conda clean step to action --- .github/workflows/pytest-workflow.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pytest-workflow.yml b/.github/workflows/pytest-workflow.yml index 88baef4d..42889ed5 100644 --- a/.github/workflows/pytest-workflow.yml +++ b/.github/workflows/pytest-workflow.yml @@ -74,6 +74,9 @@ jobs: auto-update-conda: true channels: conda-forge,bioconda,defaults python-version: ${{ matrix.python-version }} + - name: Conda clean + if: matrix.profile == 'conda' + run: conda clean -a # Test the module - name: Run pytest-workflow