1
0
mirror of https://github.com/bia-technologies/yaxunit.git synced 2024-12-12 09:04:01 +02:00
yaxunit/.github/workflows/sq.yml

41 lines
1.2 KiB
YAML
Raw Normal View History

2023-02-03 08:37:56 +02:00
name: sq-analyze
2023-02-08 20:09:38 +02:00
on: [push, pull_request]
2023-02-03 08:37:56 +02:00
jobs:
SonarScanner:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
repository: ${{ github.event.workflow_run.head_repository.full_name }}
ref: ${{ github.event.workflow_run.head_branch }}
fetch-depth: 0
- name: Configure env vars for SonarCloud scan
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
run: |
echo "::set-env name=PATH::/opt/sonar-scanner/bin:$PATH"
- name: Compute branch name
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
uses: nixel2007/branch-name@v3
- name: Extract version
shell: bash
2023-02-03 08:46:11 +02:00
run: echo "##[set-output name=version;]` cat ./exts/yaxunit/src/Configuration/Configuration.mdo | grep -oP '(?<=<version>)[\d.]+'`"
2023-02-03 08:37:56 +02:00
id: extract_version
- name: SonarCloud Scan on push
uses: nixel2007/sonarcloud-github-action@v1.4
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
args: >
-Dsonar.host.url=https://sonar.openbsl.ru
-Dsonar.projectVersion=${{ steps.extract_version.outputs.version }}