Skip to content

Commit f7bece0

Browse files
authored
Merge branch 'dev' into GC-22
2 parents 936ac41 + 76d2029 commit f7bece0

File tree

621 files changed

+60299
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

621 files changed

+60299
-4
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto

.github/workflows/sonarcloud.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: SonarCloud Code Quality Analysis
2+
3+
on:
4+
push:
5+
branches:
6+
- dev
7+
- stage
8+
- main
9+
pull_request:
10+
branches:
11+
- dev
12+
- stage
13+
- main
14+
15+
jobs:
16+
sonarcloud:
17+
name: SonarCloud
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v3
21+
with:
22+
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
23+
- name: SonarCloud Scan
24+
uses: SonarSource/sonarcloud-github-action@master
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
27+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Needed to authenticate with SonarCloud
28+
with:
29+
30+
args:
31+
32+
-Dsonar.projectKey=${{ secrets.SONAR_PROJECT_KEY }}
33+
-Dsonar.organization=${{ secrets.SONAR_ORGANIZATION }}

0 commit comments

Comments
 (0)