From 21f5d0eafa2e736d95d233558346f5c1a1c89271 Mon Sep 17 00:00:00 2001 From: Brian Bicknell Date: Sat, 1 Nov 2025 23:40:29 -0400 Subject: [PATCH] Updated CI file. --- .gitea/workflows/ci.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 15acdec..9078b1d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,27 +9,19 @@ jobs: runs-on: [self-hosted, linux, x64, docker] steps: - uses: actions/checkout@v4 - - - name: Setup .NET - uses: actions/setup-dotnet@v4 + - uses: actions/setup-dotnet@v4 with: dotnet-version: '9.0.x' - - - name: Cache NuGet - uses: actions/cache@v4 + - uses: actions/cache@v4 with: path: ~/.nuget/packages key: nuget-${{ runner.os }}-${{ hashFiles('**/*.csproj') }} restore-keys: | nuget-${{ runner.os }}- - - name: Restore run: dotnet restore - - name: Build (Release) run: dotnet build --configuration Release --no-restore - - name: Test - env: - DOTNET_CLI_TELEMETRY_OPTOUT: 1 + env: { DOTNET_CLI_TELEMETRY_OPTOUT: 1 } run: dotnet test --configuration Release --no-build --logger "trx;LogFileName=test-results.trx"