Skip to content

asd

asd #13

Workflow file for this run

on:
# Trigger analysis when pushing in master or pull requests, and when creating
# a pull request.
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
name: Main Workflow
jobs:
sonarcloud:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
args: >
-Dsonar.organization=dbmeneses
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@1e58508de7f4f3a6648e83cc27f12adf47c9e481
with:
args: >
-Dsonar.organization=dbmeneses
-Dsonar.projectKey=test
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}