Skip to content
Closed
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
5 changes: 5 additions & 0 deletions .github/workflows/fv3_translate_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: "FV3 translate tests"
on:
pull_request:
push:
# We don't use a merge queue and allow to merge outdated branches for practical reasons,
# because pyFV3 and pace tests take a long time to run. The "safety net" is thus to run
# tests when pushing to protected branches.
branches: [develop, main]

jobs:
fv3_translate_tests:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
name: "Lint"
on:
pull_request:
push:
# We don't use a merge queue and allow to merge outdated branches for practical reasons,
# because pyFV3 and pace tests take a long time to run. The "safety net" is thus to run
# tests when pushing to protected branches.
branches: [develop, main]

# cancel running jobs if theres a newer push
concurrency:
# Cancel running jobs if theres a newer push.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/pace_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: "pace main tests"
on:
pull_request:
push:
# We don't use a merge queue and allow to merge outdated branches for practical reasons,
# because pyFV3 and pace tests take a long time to run. The "safety net" is thus to run
# tests when pushing to protected branches.
branches: [develop, main]

jobs:
pace_main_tests:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/shield_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: "SHiELD Translate tests"
on:
pull_request:
push:
# We don't use a merge queue and allow to merge outdated branches for practical reasons,
# because pyFV3 and pace tests take a long time to run. The "safety net" is thus to run
# tests when pushing to protected branches.
branches: [develop, main]

jobs:
shield_translate_tests:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
name: "NDSL unit tests"
on:
pull_request:
push:
# We don't use a merge queue and allow to merge outdated branches for practical reasons,
# because pyFV3 and pace tests take a long time to run. The "safety net" is thus to run
# tests when pushing to protected branches.
branches: [develop, main]

# cancel running jobs if theres a newer push
concurrency:
# Cancel running jobs if theres a newer push.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

Expand Down