Skip to content

Add HRDPS V23-02 geo-location and forcing variables datasets (#12) #47

Add HRDPS V23-02 geo-location and forcing variables datasets (#12)

Add HRDPS V23-02 geo-location and forcing variables datasets (#12) #47

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@422500192359a097648154e8db4e39bdb6c6eed7
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}