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

@@ -11,11 +11,14 @@ jobs:
dotnet-version: [ '8.0.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
# You can test your matrix by printing the current dotnet version
- name: Display dotnet version
run: dotnet --version
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build .\src\LittleTown.sln
- name: Test with the dotnet CLI
run: dotnet test .\src\LittleTown.sln