From aa71397f9ed1d1813440b4a37086aaebee2eac40 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Mar 2026 18:31:21 +0000 Subject: [PATCH 1/2] Initial plan From 82f584123a307d47067ce248e574ff36ee25f68f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Mar 2026 18:33:35 +0000 Subject: [PATCH 2/2] Add GitHub Actions CI workflow for API build and tests Co-authored-by: WillHAdair <88009623+WillHAdair@users.noreply.github.com> --- .github/workflows/api-ci.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/api-ci.yml diff --git a/.github/workflows/api-ci.yml b/.github/workflows/api-ci.yml new file mode 100644 index 0000000..a090d94 --- /dev/null +++ b/.github/workflows/api-ci.yml @@ -0,0 +1,34 @@ +name: API CI + +on: + pull_request: + branches: + - main + +jobs: + build-and-test: + name: Build and Test + runs-on: ubuntu-latest + permissions: + contents: read + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '10.0.x' + + - name: Restore dependencies + run: dotnet restore + working-directory: API + + - name: Build + run: dotnet build --no-restore --configuration Release + working-directory: API + + - name: Run tests + run: dotnet test --no-build --configuration Release --verbosity normal + working-directory: API