Create .gitlab-ci.yml

this
This commit is contained in:
Muhammad Afzaal 2025-09-13 12:00:54 +05:00 committed by GitHub
parent 41e8d67eb2
commit d83366fed5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

13
.github/workflows/.gitlab-ci.yml vendored Normal file
View file

@ -0,0 +1,13 @@
sonarqube:
name: SonarQube Scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: SonarQube Scan
uses: SonarSource/sonarcloud-github-action@master
with:
args: >
-Dsonar.projectKey=UserServiceApp
-Dsonar.organization=my-org
-Dsonar.host.url=http://38.45.64.49:81
-Dsonar.login=${{ secrets.SONAR_TOKEN }}