From 4605a60ddf0d34ed9919f01a7f861e2bda13b610 Mon Sep 17 00:00:00 2001 From: Joseph Glaser Date: Fri, 2 Aug 2024 14:32:59 +0000 Subject: [PATCH] Seperating the runs for MacOs and Ubuntu to add in platform support. --- .github/workflows/test_CondaEnv.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_CondaEnv.yml b/.github/workflows/test_CondaEnv.yml index 3c26723..4b53851 100644 --- a/.github/workflows/test_CondaEnv.yml +++ b/.github/workflows/test_CondaEnv.yml @@ -4,6 +4,7 @@ on: pull_request: paths: - '**-env.yml' + - '.github/workflows/**' jobs: build-conda-env: @@ -18,10 +19,11 @@ jobs: uses: mamba-org/provision-with-micromamba@main with: environment-file: false - - name: Install Conda Environment + - name: Install Conda Environment on MacOS - if: matrix.os == 'macos-latest' run: | micromamba env create --platform osx-64 --file anaconda-env.yml + - name: Install Conda Environment on Ubuntu - if: matrix.os == 'ubuntu-latest' run: | micromamba env create --file anaconda-env.yml