From d83366fed5b9358462acef62d98221d7797112da Mon Sep 17 00:00:00 2001 From: Muhammad Afzaal Date: Sat, 13 Sep 2025 12:00:54 +0500 Subject: [PATCH] Create .gitlab-ci.yml this --- .github/workflows/.gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/.gitlab-ci.yml diff --git a/.github/workflows/.gitlab-ci.yml b/.github/workflows/.gitlab-ci.yml new file mode 100644 index 00000000..ea3a0c64 --- /dev/null +++ b/.github/workflows/.gitlab-ci.yml @@ -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 }}