From 3299abee3fcaaf59ec70bf6267aaa88aa5402c26 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 17 Sep 2024 14:02:49 +0200 Subject: [PATCH] add dhcp servers --- .gitea/workflows/gitea-actions-sonarqube.yml | 27 ++++++++++++++++++++ sonar-project.properties | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 .gitea/workflows/gitea-actions-sonarqube.yml create mode 100644 sonar-project.properties diff --git a/.gitea/workflows/gitea-actions-sonarqube.yml b/.gitea/workflows/gitea-actions-sonarqube.yml new file mode 100644 index 0000000..1268e15 --- /dev/null +++ b/.gitea/workflows/gitea-actions-sonarqube.yml @@ -0,0 +1,27 @@ +name: Build + +on: + push: + branches: + - main + + +jobs: + build: + name: Build and analyze + runs-on: ubuntu-latest + + 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@master + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + # If you wish to fail your job when the Quality Gate is red, uncomment the + # following lines. This would typically be used to fail a deployment. + # - uses: sonarsource/sonarqube-quality-gate-action@master + # timeout-minutes: 5 + # env: + # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} \ No newline at end of file diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 0000000..611c857 --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,2 @@ +sonar.projectKey=ansible +sonar.sources=. \ No newline at end of file