From 0c24c260c10662ee212af4c141a2188cb2146df7 Mon Sep 17 00:00:00 2001 From: JerrettDavis Date: Thu, 21 May 2026 23:50:53 -0500 Subject: [PATCH] ci: allow expanded test suite to complete --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51dec4c9..07836e07 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: pr-checks: if: github.event_name == 'pull_request' runs-on: ubuntu-latest - timeout-minutes: 30 + timeout-minutes: 45 permissions: contents: read pull-requests: write @@ -50,7 +50,7 @@ jobs: docfx build docs/docfx.json - name: Test with coverage - timeout-minutes: 20 + timeout-minutes: 30 run: | dotnet test PatternKit.slnx \ --configuration Release \ @@ -106,7 +106,7 @@ jobs: release: if: github.event_name == 'push' && github.ref == 'refs/heads/main' runs-on: ubuntu-latest - timeout-minutes: 30 + timeout-minutes: 45 permissions: contents: write packages: write @@ -162,7 +162,7 @@ jobs: /p:PackageVersion=${{ env.PACKAGE_VERSION }} - name: Test with coverage (Release) - timeout-minutes: 20 + timeout-minutes: 30 run: | dotnet test PatternKit.slnx \ --configuration Release \ @@ -170,7 +170,7 @@ jobs: -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=cobertura \ -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Include="[PatternKit*]*" \ -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Exclude="[*Tests]*" \ - -- RunConfiguration.TestSessionTimeout=900000 + -- RunConfiguration.TestSessionTimeout=1800000 - name: Pack (all packable projects)