diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7c2774e..10f3edf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,28 +20,28 @@ jobs: with: fetch-depth: 0 - - name: cache conda - uses: actions/cache@v3 - env: - CACHE_NUMBER: 0 - with: - path: ~/conda_pkgs_dir - key: - ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('environment.yml') }} - - - name: setup conda - uses: conda-incubator/setup-miniconda@3b0f2504dd76ef23b6d31f291f4913fb60ab5ff3 - with: - auto-update-conda: true - python-version: 3.9 - channels: conda-forge,bioconda - miniforge-variant: Mambaforge - miniforge-version: latest - use-mamba: true - mamba-version: "*" - activate-environment: sourmash_dev - auto-activate-base: false - use-only-tar-bz2: true + - name: cache conda + uses: actions/cache@v3 + env: + CACHE_NUMBER: 0 + with: + path: ~/conda_pkgs_dir + key: + ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('environment.yml') }} + + - name: setup conda + uses: conda-incubator/setup-miniconda@3b0f2504dd76ef23b6d31f291f4913fb60ab5ff3 + with: + auto-update-conda: true + python-version: 3.9 + channels: conda-forge,bioconda + miniforge-variant: Mambaforge + miniforge-version: latest + use-mamba: true + mamba-version: "*" + activate-environment: sourmash_dev + auto-activate-base: false + use-only-tar-bz2: true - name: Install coverage dependencies run: pip install pytest-cov pytest-dependency