diff --git a/.gitea/workflows/Quality.yaml b/.gitea/workflows/Quality.yaml index bb5872f..da18358 100644 --- a/.gitea/workflows/Quality.yaml +++ b/.gitea/workflows/Quality.yaml @@ -74,7 +74,6 @@ jobs: - name: Upload Test Result Files uses: actions/upload-artifact@v3 with: - name: test-results name: test-results path: ${{ github.workspace }}/**/TestResults/**/* retention-days: 5 diff --git a/.gitea/workflows/tests.yaml b/.gitea/workflows/tests.yaml index 874fa2b..df42205 100644 --- a/.gitea/workflows/tests.yaml +++ b/.gitea/workflows/tests.yaml @@ -1,24 +1,24 @@ -# name: dotnet package +name: dotnet package -# on: [push] +on: [push] -# jobs: -# build: +jobs: + build: -# runs-on: ubuntu-latest -# strategy: -# matrix: -# dotnet-version: [ '8.0.x' ] + runs-on: ubuntu-latest + strategy: + matrix: + dotnet-version: [ '8.0.x' ] -# steps: -# - uses: actions/checkout@v4 -# - name: Setup dotnet -# uses: actions/setup-dotnet@v3 -# with: -# dotnet-version: '8.0.x' -# - name: Install dependencies -# run: dotnet restore ./src/LittleTown.sln -# - 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 + steps: + - uses: actions/checkout@v4 + - name: Setup dotnet + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.0.x' + - name: Install dependencies + run: dotnet restore ./src/LittleTown.sln + - 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