Add .gitea/workflows/SonarScanner.yaml
Main Workflow / sonarqube (push) Waiting to run
Details
Main Workflow / sonarqube (push) Waiting to run
Details
This commit is contained in:
parent
773b3e06c5
commit
1789949fb3
|
@ -0,0 +1,27 @@
|
||||||
|
|
||||||
|
on:
|
||||||
|
# Trigger analysis when pushing to your main branches, and when creating a pull request.
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- master
|
||||||
|
- develop
|
||||||
|
- 'releases/**'
|
||||||
|
pull_request:
|
||||||
|
types: [opened, synchronize, reopened]
|
||||||
|
|
||||||
|
name: Main Workflow
|
||||||
|
jobs:
|
||||||
|
sonarqube:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: https://gitlink.org.cn/KingChan/checkout@v4
|
||||||
|
with:
|
||||||
|
# Disabling shallow clones is recommended for improving the relevancy of reporting
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: SonarQube Scan
|
||||||
|
uses: https://gitlink.org.cn/KingChan/sonarqube-scan-action@master
|
||||||
|
env:
|
||||||
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
||||||
|
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
|
||||||
|
|
Loading…
Reference in New Issue