SonarCloudTest/.gitea/workflows/test.yml
Profitroll 226d0e6458
Some checks failed
Build / SonarCloud (push) Failing after 0s
Add .gitea/workflows/test.yml
2024-10-29 23:33:40 +02:00

20 lines
464 B
YAML

name: Build
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}