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
8 changes: 7 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: "Lint"

# Run these these whenever ...
on:
pull_request:
pull_request: # ... a PR is opened / updated
merge_group: # ... the PR is added to the merge queue
push:
branches:
- main # ... when merging into the main branch

jobs:
lint:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/pace_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: "pace main tests"

# Run these these whenever ...
on:
pull_request:
pull_request: # ... a PR is opened / updated
merge_group: # ... the PR is added to the merge queue
push:
branches:
- main # ... when merging into the main branch

jobs:
pace_unit_tests:
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/translate.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: "PySHiELD translate tests"

# Run these these whenever ...
on:
workflow_call:
workflow_call: # ... called from a downstream repo
inputs:
component_trigger:
type: boolean
Expand All @@ -10,7 +12,11 @@ on:
type: string
default: ''
required: false
pull_request:
pull_request: # ... a PR is opened / updated
merge_group: # ... the PR is added to the merge queue
push:
branches:
- main # ... when merging into the main branch

# cancel running jobs if theres a newer push
concurrency:
Expand Down