Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(actions): remove sonarqube #92

Merged
merged 1 commit into from
Mar 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions .github/workflows/sonarqube.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
name: SonarQube
#name: SonarQube



on:
push:
branches:
- master
#on:
# push:
# branches:
# - master



jobs:
sonarqube:
name: SonarQube
runs-on: ubuntu-22.04
#jobs:
# sonarqube:
# name: SonarQube
# runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0

- name: SonarQube file
run: |
echo "sonar.projectKey=${{ github.event.repository.name }}" > sonar-project.properties
# - name: SonarQube file
# run: |
# echo "sonar.projectKey=${{ github.event.repository.name }}" > sonar-project.properties

- name: SonarQube Scan
uses: sonarsource/sonarqube-scan-action@v2.0.1
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
# - name: SonarQube Scan
# uses: sonarsource/sonarqube-scan-action@v2.0.1
# env:
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
# SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
Loading