2024-03-14 08:21:17 +02:00
|
|
|
name: SonarQube analysis
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
permissions:
|
2024-03-14 10:10:41 +02:00
|
|
|
pull-requests: read
|
|
|
|
|
2024-03-14 08:21:17 +02:00
|
|
|
jobs:
|
|
|
|
Analysis:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-03-14 09:52:16 +02:00
|
|
|
- uses: actions/checkout@v3
|
2024-03-14 10:10:41 +02:00
|
|
|
|
|
|
|
- name: Анализ OPI
|
|
|
|
uses: SonarSource/sonarqube-scan-action@7295e71c9583053f5bf40e9d4068a0c974603ec8
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
|
|
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
|
|
|
LC_ALL: "ru_RU.UTF-8"
|
|
|
|
with:
|
|
|
|
args:
|
2024-03-14 10:58:13 +02:00
|
|
|
-Dsonar.projectBaseDir=${{ github.workspace }}
|
2024-03-14 10:10:41 +02:00
|
|
|
-Dsonar.projectKey=OpenIntegrations
|
|
|
|
-Dsonar.sourceEncoding=UTF-8
|
|
|
|
-Dsonar.inclusions=**/*.bsl
|
|
|
|
|
|
|
|
- name: Анализ OInt
|
2024-03-14 08:21:17 +02:00
|
|
|
uses: SonarSource/sonarqube-scan-action@7295e71c9583053f5bf40e9d4068a0c974603ec8
|
|
|
|
env:
|
2024-03-14 10:10:41 +02:00
|
|
|
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|
|
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
|
|
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
2024-03-14 08:31:31 +02:00
|
|
|
LC_ALL: "ru_RU.UTF-8"
|
2024-03-14 08:21:17 +02:00
|
|
|
with:
|
2024-03-14 09:55:00 +02:00
|
|
|
args:
|
2024-03-14 10:58:13 +02:00
|
|
|
-Dsonar.projectBaseDir=${{ github.workspace }}
|
2024-03-14 09:55:00 +02:00
|
|
|
-Dsonar.projectKey=OInt
|
|
|
|
-Dsonar.sourceEncoding=UTF-8
|
|
|
|
-Dsonar.inclusions=**/*.os
|