Bump to 0.1.0 #1
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: Downstream testing | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
tags: '*' | |
# Needed to allow julia-actions/cache to delete old caches that it has created | |
permissions: | |
actions: write | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
climadiagnostics: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: '1.10' | |
- uses: julia-actions/cache@v1 | |
- uses: julia-actions/julia-buildpkg@latest | |
- name: Test ClimaAtmos | |
run: | | |
git clone git@github.com:CliMA/ClimaAtmos.jl.git | |
git checkout -b gb/use_climadiagnostics | |
cd CliMA/ClimaAtmos.jl | |
julia --project=examples -e 'Pkg.develop("..")' | |
julia --project=examples examples/hybrid/driver.jl config/model_config/ingle_column_radiative_equilibrium_gray.yml |