Skip to content

Workflow file for this run

name: SonarCloud
on:
# workflow_dispatch:
workflow_run:
workflows: ["Pre-commit checks"]
# branches: [main]
types: [completed]
push:
branches: [main]
tags: ["releases-*"]
pull_request:
jobs:
sonar_cloud:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run pre-commit
uses: minvws/nl-kat-coordination/.github/workflows/pre_commit_checks.yml
- name: Download artifacts
uses: actions/download-artifact@v4
- name: SonarCloud
uses: SonarSource/[email protected]
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}