mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-16 11:38:11 +02:00
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
name: Сервис | Анализ SonarQube
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
Analysis:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- 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:
|
|
projectBaseDir: ${{ github.workspace }}/ru/OPI
|
|
args:
|
|
-Dsonar.projectKey=OpenIntegrations
|
|
-Dsonar.sourceEncoding=UTF-8
|
|
-Dsonar.inclusions=**/*.bsl
|
|
|
|
- name: Анализ OInt
|
|
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:
|
|
projectBaseDir: ${{ github.workspace }}/ru/OInt
|
|
args:
|
|
-Dsonar.projectKey=OInt
|
|
-Dsonar.sourceEncoding=UTF-8
|
|
-Dsonar.inclusions=**/*.os
|