Skip to content

Modify warning in case SLEVE scale height is poorly specified, add test. #3363

Modify warning in case SLEVE scale height is poorly specified, add test.

Modify warning in case SLEVE scale height is poorly specified, add test. #3363

Workflow file for this run

name: Unit Tests
on:
pull_request:
paths:
- '.github/workflows/Linux-UnitTests.yml'
- 'src/**'
- 'test/**'
- 'Project.toml'
- 'Manifest.toml'
- '!lib/**'
jobs:
test:
runs-on: ubuntu-20.04
timeout-minutes: 80
strategy:
fail-fast: false
matrix:
julia-version: ['1.8']
env:
CLIMATEMACHINE_SETTINGS_FIX_RNG_SEED: "true"
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/[email protected]
- name: Set up Julia
uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- name: Cache artifacts
uses: julia-actions/cache@v1
- name: Build package
uses: julia-actions/julia-buildpkg@v1
- name: Run Unit Tests
run: julia --project -e 'using Pkg; Pkg.test()'
continue-on-error: ${{ matrix.version == 'nightly' }}