Skip to content
Merged
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
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
- opened
- reopened
- synchronize
- ready_for_review
merge_group:

permissions:
Expand All @@ -25,6 +26,7 @@ jobs:
# ---------------------------------------------------------------------------
lint:
name: Lint
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -38,6 +40,7 @@ jobs:
# ---------------------------------------------------------------------------
tidy:
name: Tidy
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -54,6 +57,7 @@ jobs:
# ---------------------------------------------------------------------------
build-and-unit-test:
name: Build and Unit Test
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -70,6 +74,7 @@ jobs:
# ---------------------------------------------------------------------------
e2e:
name: E2E Integration Test
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -80,6 +85,7 @@ jobs:

gateway-integration-test:
name: Gateway Integration Test
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -90,6 +96,7 @@ jobs:

orchestrator-integration-test:
name: Orchestrator Integration Test
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -103,6 +110,7 @@ jobs:
# ---------------------------------------------------------------------------
counter-integration-test:
name: Counter Extension Test
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -113,6 +121,7 @@ jobs:

queue-integration-test:
name: Queue Extension Test
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -123,6 +132,7 @@ jobs:

storage-integration-test:
name: Storage Extension Test
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -136,6 +146,7 @@ jobs:
# ---------------------------------------------------------------------------
consumer-integration-test:
name: Consumer Integration Test
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -155,7 +166,7 @@ jobs:
# ---------------------------------------------------------------------------
required-checks:
name: Required Checks
if: always()
if: ${{ always() && (github.event_name != 'pull_request' || github.event.pull_request.draft == false) }}
runs-on: ubuntu-latest
needs:
- lint
Expand Down
Loading