Upgrade the IOOS environment to Python 3.13 #418
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Environment | |
on: | |
pull_request: | |
jobs: | |
run: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# macos-latest is osx-arm64 and the env is not building there yet b/c of robis. | |
os: [ macos-13, ubuntu-latest, windows-latest ] | |
fail-fast: false | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup Micromamba | |
uses: mamba-org/setup-micromamba@068f1ab4b37ed9b3d9f73da7db90a0cda0a48d29 # v2.0.3 | |
with: | |
environment-name: IOOS | |
init-shell: bash | |
create-args: >- | |
--file .binder/conda-lock.yml | |
- name: Test environment | |
run: > | |
python -c 'import osgeo.gdal; print(dir(osgeo.gdal))' |