Skip to content

Commit 7779850

Browse files
Merge branch 'main' into beta
2 parents 0ae82e5 + 412251a commit 7779850

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/workflows/beta.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ on:
44
push:
55
branches:
66
- beta
7+
pull_request:
8+
types:
9+
- opened
10+
- reopened
11+
- edited
12+
- synchronize
13+
branches:
14+
- beta
715

816
concurrency:
917
group: ${{ github.workflow }}-${{ github.ref }}

.github/workflows/main.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,25 @@ jobs:
7676
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
7777
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
7878

79+
sonarcloud:
80+
name: SonarCloud
81+
runs-on: ${{ matrix.os }}
82+
83+
strategy:
84+
matrix:
85+
os: [ubuntu-latest]
86+
node: [20]
87+
88+
steps:
89+
- uses: actions/checkout@v4
90+
with:
91+
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
92+
- name: SonarCloud Scan
93+
uses: SonarSource/sonarcloud-github-action@master
94+
env:
95+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
96+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
97+
7998
semantic-version:
8099
name: Semantic Release
81100
needs: install

0 commit comments

Comments
 (0)