We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb3d64a commit 6765c27Copy full SHA for 6765c27
1 file changed
.github/workflows/build-test-envt.yml
@@ -9,19 +9,24 @@ jobs:
9
strategy:
10
fail-fast: false
11
matrix:
12
- os: ["ubuntu-20.04", "macos-latest", "windows-latest"]
+ os:
13
+ - "ubuntu-20.04"
14
+ - "macos-latest-large"
15
+ - "macos-latest-xlarge"
16
+ - "windows-latest"
17
defaults:
18
run:
19
shell: bash -el {0}
20
steps:
21
- uses: actions/checkout@v4.1.7
22
with:
- ref: upgrade-to-3.9
23
+ ref: ${{ github.head_ref || github.ref_name }}
24
- uses: conda-incubator/setup-miniconda@v3.0.4
25
26
auto-activate-base: false
27
environment-file: environment.yml
28
activate-environment: earth-analytics-python
29
- run: conda list
30
- run: python -c "import earthpy"
31
+ - run: python -c "import geopandas"
32
- run: python -c "import rioxarray"
0 commit comments