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
16 changes: 10 additions & 6 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
with:
doc_target: ''
generate_module_docs: true
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: "Sphinx"
# generate_module_docs: true
# secrets: inherit
22 changes: 15 additions & 7 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,27 @@
# limitations under the License.
#

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

on:
pull_request:
branches:
- master

jobs:
Common-Pull-Request:
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"
cpp_source_dirs: ""

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

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