diff --git a/.gitea/workflows/analysis.yml b/.gitea/workflows/analysis.yml new file mode 100644 index 0000000..50053fc --- /dev/null +++ b/.gitea/workflows/analysis.yml @@ -0,0 +1,24 @@ +name: Analysis + +on: + push: + branches: + - main + - dev + pull_request: + types: [opened, synchronize, reopened] + +jobs: + sonarcloud: + name: SonarCloud + runs-on: ubuntu-latest + container: catthehacker/ubuntu:act-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 }} \ No newline at end of file diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index ba4da84..a1ba4c6 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -36,17 +36,4 @@ jobs: - uses: actions/upload-artifact@v3 with: name: Artifacts - path: dist/* - sonarcloud: - name: SonarCloud - runs-on: ubuntu-latest - container: catthehacker/ubuntu:act-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 }} \ No newline at end of file + path: dist/* \ No newline at end of file