From e791eccef13bb26e034f5ca28415273463f2ea14 Mon Sep 17 00:00:00 2001 From: Clemens Lange Date: Tue, 13 Feb 2024 11:06:29 +0100 Subject: [PATCH 1/2] Migrate test action to setup-micromamba --- .github/workflows/tests.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e2f8fcf1..62c00718 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -47,17 +47,18 @@ jobs: - uses: actions/checkout@v4 - name: Setup Micromamba environment - uses: mamba-org/provision-with-micromamba@v16 + uses: mamba-org/setup-micromamba@v1 with: - environment-file: false environment-name: ci - extra-specs: | + create-args: >- python=${{ matrix.python-version }} root=${{ matrix.root-version }} imagemagick ghostscript pip - channels: conda-forge + condarc: | + channels: + - conda-forge - name: ROOT info run: | From 49a29e2f680cabf76de55f78d2811b845b2152b1 Mon Sep 17 00:00:00 2001 From: Clemens Lange Date: Tue, 13 Feb 2024 11:36:17 +0100 Subject: [PATCH 2/2] Fix upload-artifact --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 62c00718..0d8044e6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -105,7 +105,7 @@ jobs: if: ${{ always() }} uses: actions/upload-artifact@v4 with: - name: notebooks py3 + name: notebooks-${{ matrix.root-version }}-${{ matrix.python-version }}-${{ matrix.os }} py3-${{ matrix.root-version }}-${{ matrix.python-version }}-${{ matrix.os }} path: examples/*.html - name: Run pylint