From 91a37041c3666c07ce349a385fc144c94fc740e3 Mon Sep 17 00:00:00 2001 From: mcflugen Date: Mon, 11 Mar 2024 09:22:39 -0600 Subject: [PATCH] update setup-miniconda --- .github/workflows/test-langs.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-langs.yml b/.github/workflows/test-langs.yml index 47d45759..2acae11e 100644 --- a/.github/workflows/test-langs.yml +++ b/.github/workflows/test-langs.yml @@ -29,11 +29,10 @@ jobs: with: submodules: true - - uses: conda-incubator/setup-miniconda@v2 + - uses: conda-incubator/setup-miniconda@v3 with: auto-update-conda: true python-version: ${{ matrix.python-version }} - mamba-version: "*" channels: conda-forge channel-priority: true @@ -42,7 +41,7 @@ jobs: - name: Install compilers if: matrix.language != 'python' - run: mamba install ${{ matrix.language }}-compiler cmake make pkg-config + run: conda install ${{ matrix.language }}-compiler cmake make - name: Run the language tests run: nox -s "test-langs-${{ matrix.python-version }}(lang='${{ matrix.language }}')" --python ${{ matrix.python-version }} --verbose