Bump mamba-org/setup-micromamba from 2.0.1 to 2.0.2 in the github-actions group #398
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 and link rot | |
on: | |
pull_request: | |
jobs: | |
run: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ macos-latest, ubuntu-latest, windows-latest ] | |
fail-fast: false | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Micromamba | |
uses: mamba-org/setup-micromamba@06375d89d211a1232ef63355742e9e2e564bc7f7 #v1 | |
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))' | |
- name: Test links | |
if: startsWith(matrix.os, 'ubuntu') | |
run: > | |
jupyter-book build jupyterbook --builder linkcheck |