Change soil albedo to depend of soil moisture #1828
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: ClimaLandSimulations CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: | |
actions: write | |
contents: read | |
jobs: | |
lib-climalandsimulations: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 45 | |
strategy: | |
matrix: | |
version: | |
- '1.10' | |
- '1.11' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: ${{ matrix.version }} | |
- uses: julia-actions/cache@v2 | |
- name: Install Julia dependencies | |
run: > | |
julia --project=lib/ClimaLandSimulations -e 'using Pkg; Pkg.develop(path=".")' | |
- name: Run the tests | |
continue-on-error: true | |
env: | |
CI_OUTPUT_DIR: output | |
run: > | |
julia --project=lib/ClimaLandSimulations -e 'using Pkg; Pkg.test("ClimaLandSimulations")' |