test de test
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s

This commit is contained in:
2024-05-31 22:55:10 +02:00
parent fbb8064e2e
commit c5fdb625b1

View File

@@ -16,6 +16,9 @@ jobs:
uses: actions/setup-dotnet@v3 uses: actions/setup-dotnet@v3
with: with:
dotnet-version: '8.0.x' dotnet-version: '8.0.x'
# You can test your matrix by printing the current dotnet version - name: Install dependencies
- name: Display dotnet version run: dotnet restore
run: dotnet --version - name: Build
run: dotnet build .\src\LittleTown.sln
- name: Test with the dotnet CLI
run: dotnet test .\src\LittleTown.sln