From eb656f1cd8f6ca0923591b9ea44b580ba02e3ea8 Mon Sep 17 00:00:00 2001 From: Sofija Reznicenko Date: Fri, 17 Oct 2025 11:36:14 +0100 Subject: [PATCH 1/2] ci(task-8.3): trigger CI_TASK8_ONLY validation From eea78d15da692dd3aff813e3eb199804144145ab Mon Sep 17 00:00:00 2001 From: Sofija Reznicenko Date: Fri, 17 Oct 2025 11:39:31 +0100 Subject: [PATCH 2/2] ci(task-8.3): add GitHub Actions workflow --- .github/workflows/task-8-tests.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/task-8-tests.yml diff --git a/.github/workflows/task-8-tests.yml b/.github/workflows/task-8-tests.yml new file mode 100644 index 000000000..54e10feae --- /dev/null +++ b/.github/workflows/task-8-tests.yml @@ -0,0 +1,15 @@ +name: Task 8.3 CI Validation + +on: + push: + branches: + - fix/hud-keychain-cancel-animation + workflow_dispatch: + +jobs: + build: + runs-on: macos-latest + steps: + - uses: actions/checkout@v3 + - name: Run tests (CI_TASK8_ONLY) + run: swift test -Xswiftc -DCI_TASK8_ONLY --filter VisionAssistantActorIntegrationTests 2>&1 | tee test-log.txt