From 5e65040960289c3fd33931b280688af2e2947acf Mon Sep 17 00:00:00 2001 From: Anthony Ettinger Date: Mon, 3 Aug 2026 18:36:16 +0000 Subject: [PATCH] ci: fix Check workflow scheme name xcodebuild was invoked with `-scheme bitchatTests_iOS`, but that is a target in project.yml, not a scheme. XcodeGen generates two schemes, "bitchat (iOS)" and "bitchat (macOS)"; the iOS one already lists bitchatTests_iOS as its test target. The job therefore failed on every PR with: error: The project named "bitchat" does not contain a scheme named "bitchatTests_iOS". Point the test step at the actual scheme. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index ac9a0f8583..d4ee6a00f0 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -23,5 +23,5 @@ jobs: - name: Run iOS tests run: | set -o pipefail && xcodebuild test \ - -scheme bitchatTests_iOS \ + -scheme "bitchat (iOS)" \ -destination "platform=iOS Simulator,name=iPhone 16" | xcpretty