From 96b86901a9c02518b81f8526a57a679efa75c9f0 Mon Sep 17 00:00:00 2001 From: Brendt Wohlberg Date: Mon, 29 Apr 2024 10:40:31 -0600 Subject: [PATCH] Attempt to fix workflow --- .github/workflows/pytest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 1fe7e46..e9163b6 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -20,13 +20,13 @@ jobs: - uses: actions/checkout@v3 - uses: conda-incubator/setup-miniconda@v3 with: + python-version: ${{ matrix.python-version }} auto-update-conda: true activate-environment: test-env - python-version: ${{ matrix.python-version }} + auto-activate-base: false - name: Activate environment run: | - conda init - conda activate test-env + source activate test-env - name: Display environment details run: | conda info