CTP-4066 SORA extenson for new student enrolment in course #238
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Sonarqube | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: SonarQube Scan | |
uses: sonarsource/sonarqube-scan-action@master | |
env: | |
SONAR_TOKEN: ${{secrets.SONAR_TOKEN}} | |
SONAR_HOST_URL: ${{vars.SONAR_HOST_URL}} | |
with: | |
args: -Dsonar.projectKey=${{github.event.repository.name}} |