Skip to content

Контроль качества #389

Контроль качества

Контроль качества #389

Workflow file for this run

# MIT License
# Copyright (C) 2020 Tymko Oleg <[email protected]> and contributors
# All rights reserved.
name: Контроль качества
# Любой пуш и pr в проекте но с фильтром по основному проекту
on:
push:
pull_request:
workflow_run:
workflows: ["Синхронизация конфигурации"]
types:
- completed
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
jobs:
build:
if: github.repository == '1c-syntax/ssl_3_1_eng'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
oscript_version: ['1.8.3']
steps:
# Загрузка проекта
- name: Актуализация
uses: actions/[email protected]
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
# https://stackoverflow.com/questions/58033366/how-to-get-current-branch-within-github-actions
- name: Извлечение имени текущей ветки
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: Получение description
shell: bash
run: echo "::set-output name=data::$(cat description.json | grep "\"Версия\"")"
id: description_data
- name: Извлечение версии пакета
uses: actions-ecosystem/action-regex-match@v2
with:
text: ${{ steps.description_data.outputs.data }}
regex: '"Версия".*\:.*"((?:\d+\.)+\d+)"'
id: extract_version
- name: Установка Sonar-scanner
uses: warchant/setup-sonar-scanner@v8
# Анализ проекта в SonarQube (ветка)
- name: Анализ в SonarQube (branch)
if: github.event_name == 'push' || github.event_name == 'workflow_run'
run: sonar-scanner
-Dsonar.login=${{ secrets.SONARQUBE_TOKEN }}
-Dsonar.host.url=${{ secrets.SONARQUBE_HOST }}
-Dsonar.branch.name=${{ steps.extract_branch.outputs.branch }}
-Dsonar.projectVersion=${{ steps.extract_version.outputs.group1 }}