1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-24 05:36:29 +02:00

43 lines
1.2 KiB
YAML
Raw Normal View History

name: Сервис | Анализ SonarQube
2024-03-14 09:21:17 +03:00
on:
workflow_dispatch:
permissions:
2024-03-14 11:10:41 +03:00
pull-requests: read
2024-03-14 09:21:17 +03:00
jobs:
Analysis:
runs-on: ubuntu-latest
steps:
2024-03-14 10:52:16 +03:00
- uses: actions/checkout@v3
2024-03-14 11:10:41 +03: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-03-14 12:03:22 +03:00
projectBaseDir: ${{ github.workspace }}/OPI
2024-03-14 11:10:41 +03:00
args:
-Dsonar.projectKey=OpenIntegrations
-Dsonar.sourceEncoding=UTF-8
-Dsonar.inclusions=**/*.bsl
- name: Анализ OInt
2024-03-14 09:21:17 +03:00
uses: SonarSource/sonarqube-scan-action@7295e71c9583053f5bf40e9d4068a0c974603ec8
env:
2024-03-14 11:10:41 +03:00
GITHUB_TOKEN: ${{ secrets.TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
2024-03-14 09:31:31 +03:00
LC_ALL: "ru_RU.UTF-8"
2024-03-14 09:21:17 +03:00
with:
2024-03-14 12:03:22 +03:00
projectBaseDir: ${{ github.workspace }}/OInt
2024-03-14 10:55:00 +03:00
args:
-Dsonar.projectKey=OInt
-Dsonar.sourceEncoding=UTF-8
-Dsonar.inclusions=**/*.os