Engine_silk.NET/.gitea/workflows/cicd.yml
Daniel c9c0c7e6a6
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 34s
added workflow
2023-09-28 14:08:28 +02:00

24 lines
1.2 KiB
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions
on: [push]
jobs:
Explore-Gitea-Actions:
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
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
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
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 }}."