using feedback_tracker methods for getting due dates and missing mark… #39
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: ${{secrets.SONAR_HOST_URL}} | |
with: | |
args: -Dsonar.projectKey=${{github.event.repository.name}} |