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: 8 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ run-name: ${{ inputs.run_name }}

on:
workflow_dispatch:
pull_request:
branches:
- main
# You can name your branch dev-foo to get CI runs.
- 'dev-**'
push:
branches:
- main

jobs:
pre-commit:
Expand Down
17 changes: 9 additions & 8 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@
name: Integration Tests
on:
workflow_dispatch:
pull_request:
# You can name your branch dev-foo to get CI runs.
branches: [main, 'dev-**']
merge_group:
branches: [main, 'dev-**']
types: [checks_requested]
push:
branches: [main]
# Disabled automatic triggers because tests in this workflow fail to run.
# pull_request:
# # You can name your branch dev-foo to get CI runs.
# branches: [main, 'dev-**']
# merge_group:
# branches: [main, 'dev-**']
# types: [checks_requested]
# push:
# branches: [main]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
Expand Down
18 changes: 10 additions & 8 deletions .github/workflows/integration-tests.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ name: Integration Tests

on:
workflow_dispatch:
pull_request:
# You can name your branch dev-foo to get CI runs.
branches: [main, 'dev-**']
merge_group:
branches: [main, 'dev-**']
types: [checks_requested]
push:
branches: [main]

# Disabled automatic triggers because tests in this workflow fail to run.
# pull_request:
# # You can name your branch dev-foo to get CI runs.
# branches: [main, 'dev-**']
# merge_group:
# branches: [main, 'dev-**']
# types: [checks_requested]
# push:
# branches: [main]

concurrency:
group: ${{ github.ref }}
Expand Down