Skip to content

Feature/GitHub actions #1

Feature/GitHub actions

Feature/GitHub actions #1

Workflow file for this run

---
name: SonarQube Scan
on: # yamllint disable-line rule:truthy
push:
branches:
- master
- main
- develop
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarqube:
name: SonarQube Trigger
runs-on: ubuntu-latest
steps:
- name: Checking out
uses: actions/checkout@master
with:
fetch-depth: 0
- name: SonarQube Scan
uses: kitabisa/[email protected]
with:
host: ${{ secrets.SONARQUBE_HOST }}
login: ${{ secrets.SONARQUBE_TOKEN }}