From c5fdb625b175adf67595330cd0dfd4786fd39498 Mon Sep 17 00:00:00 2001 From: mcmuzzle Date: Fri, 31 May 2024 22:55:10 +0200 Subject: [PATCH] test de test --- .gitea/workflows/tests.yaml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/tests.yaml b/.gitea/workflows/tests.yaml index 421ae20..5daf06b 100644 --- a/.gitea/workflows/tests.yaml +++ b/.gitea/workflows/tests.yaml @@ -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 \ No newline at end of file + - 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 \ No newline at end of file