Files
torsearch/.gitea/workflows/sonarqube_scans.yml
Brock H Caldwell c175dddede
Some checks failed
SonarQube Scan / SonarQube Trigger (pull_request) Failing after 9s
fix: hard codes qube host
2025-11-10 16:29:35 -06:00

25 lines
560 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:
- name: Checking out
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: SonarQube Scan
uses: kitabisa/sonarqube-action@v1.2.1
with:
host: "https://qube.caldwell.digital"
login: ${{ secrets.SONARQUBE_TOKEN }}
projectName: "torsearch"
projectBaseDir: "./src"