From 6765c27aa945039e593056f56a6a936a897f256a Mon Sep 17 00:00:00 2001 From: Elsa Culler Date: Fri, 21 Jun 2024 13:36:57 -0600 Subject: [PATCH] Update build-test-envt.yml --- .github/workflows/build-test-envt.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test-envt.yml b/.github/workflows/build-test-envt.yml index f5ebf41..ed6d5ec 100644 --- a/.github/workflows/build-test-envt.yml +++ b/.github/workflows/build-test-envt.yml @@ -9,14 +9,18 @@ jobs: strategy: fail-fast: false matrix: - os: ["ubuntu-20.04", "macos-latest", "windows-latest"] + os: + - "ubuntu-20.04" + - "macos-latest-large" + - "macos-latest-xlarge" + - "windows-latest" defaults: run: shell: bash -el {0} steps: - uses: actions/checkout@v4.1.7 with: - ref: upgrade-to-3.9 + ref: ${{ github.head_ref || github.ref_name }} - uses: conda-incubator/setup-miniconda@v3.0.4 with: auto-activate-base: false @@ -24,4 +28,5 @@ jobs: activate-environment: earth-analytics-python - run: conda list - run: python -c "import earthpy" + - run: python -c "import geopandas" - run: python -c "import rioxarray"