From b7da752b15324c20c8f2c0fe3c3553185aff65e9 Mon Sep 17 00:00:00 2001 From: "openai-code-agent[bot]" <242516109+Codex@users.noreply.github.com> Date: Wed, 15 Apr 2026 21:23:49 +0000 Subject: [PATCH 1/3] Initial plan From 9c52e6d00936dadc7367756502d9d70d70af77c8 Mon Sep 17 00:00:00 2001 From: "openai-code-agent[bot]" <242516109+Codex@users.noreply.github.com> Date: Wed, 15 Apr 2026 21:26:33 +0000 Subject: [PATCH 2/3] ci: align dotnet build and test steps Co-authored-by: dgee2 <5671841+dgee2@users.noreply.github.com> --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ccdcc67c..c8f7f7cb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -56,7 +56,7 @@ jobs: run: dotnet restore - name: Build - run: dotnet build + run: dotnet build --configuration Release --no-restore - name: clean ssl cert run: dotnet dev-certs https --clean @@ -67,7 +67,7 @@ jobs: echo "SSL_CERT_DIR=$HOME/.aspnet/dev-certs/trust:${SSL_CERT_DIR:-/usr/lib/ssl/certs}" >> "$GITHUB_ENV" - name: Test with the dotnet CLI - run: dotnet test --configuration Release + run: dotnet test --configuration Release --no-build env: parameters__Auth0TestClientId: ${{ vars.AUTH0_CLIENT_ID }} parameters__Auth0TestClientSecret: ${{ secrets.AUTH0_CLIENT_SECRET }} From 6f02c96c441d31379d7cc0f2907c9d1787f5dc8a Mon Sep 17 00:00:00 2001 From: Daniel Gee Date: Wed, 15 Apr 2026 22:30:31 +0100 Subject: [PATCH 3/3] Update .github/workflows/main.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c8f7f7cb..f39b1dfa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -67,7 +67,7 @@ jobs: echo "SSL_CERT_DIR=$HOME/.aspnet/dev-certs/trust:${SSL_CERT_DIR:-/usr/lib/ssl/certs}" >> "$GITHUB_ENV" - name: Test with the dotnet CLI - run: dotnet test --configuration Release --no-build + run: dotnet test --configuration Release --no-build --no-restore env: parameters__Auth0TestClientId: ${{ vars.AUTH0_CLIENT_ID }} parameters__Auth0TestClientSecret: ${{ secrets.AUTH0_CLIENT_SECRET }}