From b818980fe769b3c5e911fba95d3cc12f6bad0a95 Mon Sep 17 00:00:00 2001 From: Daisuke Oyama Date: Sun, 10 Nov 2024 15:14:06 +0900 Subject: [PATCH] CI: Install libmamba from conda-forge --- .github/workflows/ci_np2.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_np2.yml b/.github/workflows/ci_np2.yml index c3f7446c..3ec474c1 100644 --- a/.github/workflows/ci_np2.yml +++ b/.github/workflows/ci_np2.yml @@ -1,9 +1,12 @@ name: conda-build (NumPy v2) -on: [push] +on: + push: + pull_request: + branches: [ $default-branch ] jobs: - build-linux: + tests: runs-on: ubuntu-latest strategy: max-parallel: 5 @@ -20,6 +23,7 @@ jobs: echo $CONDA/bin >> $GITHUB_PATH - name: Install dependencies run: | + conda install -c conda-forge libmamba conda env update --file environment_np2.yml --name base - name: Conda info shell: bash -l {0}