187.schema submodule #605
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: build_conda | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: continuumio/miniconda3:latest | |
steps: | |
- name: Checkout Files | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Run Conda to Build | |
run: | | |
conda config --append channels conda-forge | |
conda config --append channels noaa-gfdl | |
conda install conda-build conda-verify | |
conda build . |