updated cicd
All checks were successful
Gitea Actions Demo / Scan the project (push) Successful in 18s

This commit is contained in:
Daniel 2023-09-28 14:15:13 +02:00
parent c9c0c7e6a6
commit 5872f482fb

View File

@ -3,22 +3,14 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions
on: [push]
jobs:
Explore-Gitea-Actions:
Scan the project:
runs-on: dotNET
steps:
- run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
- name: Check out repository
uses: actions/checkout@v3
- run: echo "The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- name: start scanning
- name: Start sonar scanner
run: cd src && dotnet sonarscanner begin /k:"Engine_silk.net" /d:sonar.host.url="https://sonar.elosia.mooo.com" /d:sonar.token="sqp_d4f022f96ed66bc3e6acfd4468dfb7825156402b"
- name: build
- name: Build the engine
run: cd src && dotnet build
- name: end scanning
run: cd src && dotnet sonarscanner end /d:sonar.token="sqp_d4f022f96ed66bc3e6acfd4468dfb7825156402b"
- run: echo "This job's status is ${{ job.status }}."
- name: End sonar scanner
run: cd src && dotnet sonarscanner end /d:sonar.token="sqp_d4f022f96ed66bc3e6acfd4468dfb7825156402b"