Skip to content

Commit 01a63ca

Browse files
trial: add dependency to tests in modules to try to trigger sonar cloud analysis
1 parent c70464f commit 01a63ca

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

.github/workflows/callbacks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252
code-analysis:
5353
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
5454
runs-on: ubuntu-latest
55+
needs: [tests]
5556
steps:
5657
- name: sonarcloud
5758
if: ${{ env.GIT_DIFF && !github.event.pull_request.draft && env.SONAR_TOKEN != null }}

.github/workflows/capability.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
code-analysis:
3939
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
4040
runs-on: ubuntu-latest
41+
needs: [tests]
4142
steps:
4243
- name: sonarcloud
4344
if: ${{ env.GIT_DIFF && !github.event.pull_request.draft && env.SONAR_TOKEN != null }}

.github/workflows/wasm-client.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ jobs:
5959
code-analysis:
6060
if: github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]'
6161
runs-on: ubuntu-latest
62+
needs: [tests]
6263
steps:
6364
- name: sonarcloud
6465
if: ${{ env.GIT_DIFF && !github.event.pull_request.draft && env.SONAR_TOKEN != null }}

0 commit comments

Comments
 (0)