Add ubcSSg3DvGridFields1hV21-11 dataset #20
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: check-datasets-xml | |
on: | |
push: | |
branches: [ '*' ] | |
jobs: | |
check-datasets-xml: | |
permissions: | |
contents: read | |
pull-requests: write | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ '3.12' ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Conda environment with Micromamba | |
uses: mamba-org/setup-micromamba@e820223f89c8720d6c740ca154a7adf32fcd278a | |
with: | |
environment-file: envs/environment-test.yaml | |
environment-name: erddap-datasets-test | |
cache-environment: true | |
cache-downloads: true | |
# persist downloads cache for 1 day | |
cache-downloads-key: downloads-${{ steps.date.outputs.date }} | |
create-args: >- | |
python=${{ inputs.python-version }} | |
- name: Run check_datasets_xml.py | |
run: python check_datasets_xml.py | |
shell: bash -el {0} |