Files
ultimate-ee/.gitea/workflows/sonarqube.yml
root 7c064e5d26
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 3s
add dhcp servers
2024-09-17 11:19:17 +02:00

24 lines
598 B
YAML

on:
push:
branches:
- main
# pull_request:
# types: [opened, synchronize, reopened]
name: SonarQube Scan
jobs:
sonarqube:
name: SonarQube Trigger
runs-on: ubuntu-latest
steps:
# - run: apk add --no-cache nodejs docker
- name: Checking out
uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: SonarQube Scan
uses: kitabisa/sonarqube-action
with:
host: ${{ secrets.SONARQUBE_HOST }}
login: ${{ secrets.SONARQUBE_TOKEN }}