@@ -35,11 +35,11 @@ jobs:
35
35
with :
36
36
dotnet-version : " 9.0.x"
37
37
38
- - name : ⚙️ Set up JDK 17
39
- uses : actions/setup-java@v3
40
- with :
41
- java-version : 17
42
- distribution : " zulu"
38
+ # - name: ⚙️ Set up JDK 17
39
+ # uses: actions/setup-java@v3
40
+ # with:
41
+ # java-version: 17
42
+ # distribution: "zulu"
43
43
44
44
- name : 🧹 Clean
45
45
run : dotnet clean -c Release && dotnet nuget locals all --clear
@@ -53,18 +53,18 @@ jobs:
53
53
- name : 🧪 Run unit tests
54
54
run : dotnet test -c Release --no-build --filter "Category!=Integration"
55
55
56
- - name : 🌩️ SonarCloud install scanner
57
- run : dotnet tool install --global dotnet-sonarscanner
58
-
59
- - name : 🌩️ SonarCloud analyze
60
- env :
61
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
62
- SONAR_TOKEN : ${{ secrets.SONAR_TOKEN }}
63
- shell : pwsh
64
- run : |
65
- dotnet sonarscanner begin /k:"atc-rest-api-generator" /o:"atc-net" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
66
- dotnet build -c Release /p:UseSourceLink=true --no-restore
67
- dotnet sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
56
+ # - name: 🌩️ SonarCloud install scanner
57
+ # run: dotnet tool install --global dotnet-sonarscanner
58
+
59
+ # - name: 🌩️ SonarCloud analyze
60
+ # env:
61
+ # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
62
+ # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
63
+ # shell: pwsh
64
+ # run: |
65
+ # dotnet sonarscanner begin /k:"atc-rest-api-generator" /o:"atc-net" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
66
+ # dotnet build -c Release /p:UseSourceLink=true --no-restore
67
+ # dotnet sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
68
68
69
69
- name : ⏩ Merge to stable-branch
70
70
run : |
0 commit comments