Skip to content

Adding in Gitea Runner testing; not very secure yet #215

Adding in Gitea Runner testing; not very secure yet

Adding in Gitea Runner testing; not very secure yet #215

name: Build
on:
push:
branches:
- main
jobs:
sonar-scan:
name: Scan with SonarQube
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: sonarsource/sonarqube-scan-action@v2
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}