From dcb8bbc05fe3db3774dcd919c0dabb6874a60665 Mon Sep 17 00:00:00 2001 From: HueByte Date: Sat, 21 Feb 2026 17:26:30 +0100 Subject: [PATCH] fix: exclude Terminal.Gui from formatting checks in CI workflow --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d91ad0..0aabca1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: dotnet-version: '10.0.x' - name: Check formatting - run: dotnet format src/EchoHub.slnx --verify-no-changes --verbosity diagnostic + run: dotnet format src/EchoHub.slnx --verify-no-changes --verbosity diagnostic --exclude src/Terminal.Gui/ build-and-test: name: Build & Test