Skip to content
Draft
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
18 changes: 18 additions & 0 deletions .github/workflows/sonar-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: SonarQube Scan
run-name: ${{ github.actor }} is running the workflow for Workspace services
on:
push:
branches: [ "release" ]
pull_request:
types: [opened, synchronize, reopened]
branches: [ "master" ]
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab

jobs:
sonar-scan:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run SonarQube Scan
uses: bynder/github-actions/actions/sonarqube@master
Loading