Skip to content

Commit

Permalink
Merge pull request #109 from zmoon/deploy-docs
Browse files Browse the repository at this point in the history
Deploy Doxygen docs to GH Pages
  • Loading branch information
zmoon authored Dec 5, 2024
2 parents b8de10d + 75842ef commit b51a4a1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 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/core/config_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ SUBROUTINE Config_Process_SeaSalt( ConfigInput, Config, RC )
RC = CC_SUCCESS
thisLoc = ' -> at Config_Process_SeaSalt (in CATChem/src/core/config_mod.F90)'
errMsg = ''

key = "process%seasalt%activate"
v_bool = MISSING_BOOL
CALL QFYAML_Add_Get( ConfigInput, TRIM( key ), v_bool, "", RC )
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 b51a4a1

Please sign in to comment.