Skip to content

Commit

Permalink
Merge branch 'develop' into feature/catchem_begins
Browse files Browse the repository at this point in the history
  • Loading branch information
bbakernoaa authored Dec 20, 2024
2 parents afcbfc4 + b51a4a1 commit b31acf1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Doxygen docs

on:
push:
branches: [feature/catchem_begins]
branches: [develop]
pull_request:
branches: [feature/catchem_begins]
branches: [develop]
permissions:
contents: write

Expand All @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install dependencies
run: sudo apt-get install -y doxygen graphviz
run: sudo apt-get update && sudo apt-get install -y doxygen graphviz

- name: Build
run: |
Expand All @@ -24,7 +24,7 @@ jobs:
cd -
- name: Deploy
if: github.ref == 'refs/heads/feature/catchem_begins'
if: github.ref == 'refs/heads/develop'
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
Expand Down
2 changes: 1 addition & 1 deletion src/process/drydep/ccpr_scheme_GOCART_DryDep_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ subroutine CCPr_Scheme_GOCART_DryDep(km, &
if (associated(GOCART_LWI)) nullify(GOCART_LWI)
if (associated(GOCART_HFLUX)) nullify(GOCART_HFLUX)
if (associated(GOCART_Z0H)) nullify(GOCART_Z0H)

! End GOCART Code


Expand Down
4 changes: 2 additions & 2 deletions tests/test_drydep.f90
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ program test_drydep
stop 1
end if

! Please revisit statements below - confirm only 1 valid value is being returned
! Please revisit statements below - confirm only 1 valid value is being returned
call print_info(Config, DryDepState, MetState, title)
call assert(DiagState%drydep_frequency(1) > 0.0_fp, "Test 2 GOCART drydep Scheme (resuspension activated)")


contains

Expand Down

0 comments on commit b31acf1

Please sign in to comment.