feat: adding LandSurfaceTemperature module for LST modeling #141
This file contains hidden or 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: Parameter & variable metadata JSON generation | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ master ] | |
| paths: [ "Wflow/src/standard_name/**" ] | |
| pull_request: | |
| paths: [ "Wflow/src/standard_name/**" ] | |
| jobs: | |
| json_gen: | |
| name: JSON generation | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - uses: julia-actions/cache@a45e8fa8be21c18a06b7177052533149e61e9b38 # v3.1.0 | |
| - uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0 | |
| - name: prepare pixi | |
| run: pixi run install-julia | |
| - name: Test parameter metadata JSON generation | |
| run: pixi run parameter_metadata_json_gen | |
| - name: Ensure that there was no change in the metadata | |
| run: git diff --exit-code |