diff --git a/.gitea/workflows/cicd.yml b/.gitea/workflows/cicd.yml index 5f352f6..582dd99 100644 --- a/.gitea/workflows/cicd.yml +++ b/.gitea/workflows/cicd.yml @@ -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 }}." \ No newline at end of file + - name: End sonar scanner + run: cd src && dotnet sonarscanner end /d:sonar.token="sqp_d4f022f96ed66bc3e6acfd4468dfb7825156402b" \ No newline at end of file