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