Compare commits

..

1 Commits

Author SHA1 Message Date
Peter Wieringa
6d0fa8b638 Merge remote-tracking branch 'origin/main' into new/initial_commit
Some checks failed
SonarQube Scan / SonarQube Trigger (pull_request) Failing after 11s
2025-12-28 18:10:40 +01:00

View File

@ -4,21 +4,22 @@ on:
pull_request: pull_request:
branches: branches:
- main - main
push:
branches:
- main
jobs: jobs:
sonarqube: sonarqube:
name: SonarQube Trigger
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout code - name: Checking out
uses: actions/checkout@v4 uses: actions/checkout@master
with: with:
fetch-depth: 0 # Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: SonarQube Scan
uses: kitabisa/sonarqube-action@v1.2.0
with:
host: ${{ secrets.SONARQUBE_HOST }}
login: ${{ secrets.SONARQUBE_TOKEN }}
projectKey: "schiphol"
projectName: "schiphol"
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@v6
env:
SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST }}
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}