1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/.github/workflows/sonarqube.yml

43 lines
1.2 KiB
YAML
Raw Normal View History

name: Сервис | Анализ SonarQube
2024-03-14 08:21:17 +02:00
on:
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:
2024-05-31 11:35:14 +02:00
projectBaseDir: ${{ github.workspace }}/ru/OPI
2024-03-14 10:10:41 +02:00
args:
-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-05-31 11:35:14 +02:00
projectBaseDir: ${{ github.workspace }}/ru/OInt
2024-03-14 09:55:00 +02:00
args:
-Dsonar.projectKey=OInt
-Dsonar.sourceEncoding=UTF-8
-Dsonar.inclusions=**/*.os