Skip to content
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.

v2.2.1

v2.2.1 #38

Workflow file for this run

name: Code Analysis
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
code-analysis:
name: scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
- uses: sonarsource/sonarqube-quality-gate-action@master
timeout-minutes: 5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}