Daniel
5872f482fb
All checks were successful
Gitea Actions Demo / Scan the project (push) Successful in 18s
16 lines
660 B
YAML
16 lines
660 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions
|
|
on: [push]
|
|
|
|
jobs:
|
|
Scan the project:
|
|
runs-on: dotNET
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v3
|
|
- 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 the engine
|
|
run: cd src && dotnet build
|
|
- name: End sonar scanner
|
|
run: cd src && dotnet sonarscanner end /d:sonar.token="sqp_d4f022f96ed66bc3e6acfd4468dfb7825156402b" |