Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/workflows/merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,21 @@
# limitations under the License.
#

name: .github Merge Workflow
name: Merge Workflow

on:
push:
branches:
- master

jobs:
Common-Merge:
uses: NWChemEx/.github/.github/workflows/common_merge.yaml@master
tag-commit:
uses: NWChemEx/.github/.github/workflows/tag.yaml@master
secrets: inherit

deploy_nwx_docs:
uses: NWChemEx/.github/.github/workflows/deploy_nwx_docs.yaml@master
with:
doc_target: 'nux_cxx_api'
doc_target: "nux_cxx_api"
generate_module_docs: true
secrets: inherit
21 changes: 14 additions & 7 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,26 @@
# limitations under the License.
#

name: .github Pull Request Workflow
name: Pull Request Workflow

on:
pull_request:
branches:
- master

jobs:
default_build:
uses: NWChemEx/.github/.github/workflows/common_pull_request.yaml@master
check_formatting:
uses: NWChemEx/.github/.github/workflows/check_formatting.yaml@master
with:
license_config: ".github/.licenserc.yaml"

test_nwx_docs:
uses: NWChemEx/.github/.github/workflows/test_nwx_docs.yaml@master
with:
doc_target: "nux_cxx_api"

test_library:
uses: NWChemEx/.github/.github/workflows/test_nwx_library.yaml@master
with:
config_file: '.github/.licenserc.yaml'
source_dir: 'include src tests'
compilers: '["gcc-11", "clang-14"]'
doc_target: 'nux_cxx_api'
secrets: inherit