Skip to content

Commit

Permalink
fix: Remove target grouping
Browse files Browse the repository at this point in the history
Signed-off-by: Philippe Weidmann <[email protected]>
  • Loading branch information
PhilippeWeidmann committed Feb 7, 2025
1 parent 4241dd7 commit 5ced948
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ jobs:
echo -e "enum Env {\n static let token = \"$ACCESS_TOKEN\"\n\n static let driveId = 420132\n\n static let userId = $USER_ID\n\n static let inviteUserId = $INVITE_USER_ID\n\n static let inviteMail = \"$INVITE_EMAIL\"\n\n static let inviteTeam = 0\n\n static let commonDocumentsId = 3\n}" > $ENV_PATH
- name: Build
run: tuist install && tuist generate && tuist build --clean kDrive
- name: Test
run: tuist test kDrive-Workspace --test-targets kDriveTests/DriveApiTests
- name: Test API
run: tuist test kDrive-Workspace --test-targets kDriveAPITests/DriveApiTests
6 changes: 5 additions & 1 deletion Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ import ProjectDescription
import ProjectDescriptionHelpers

let project = Project(name: "kDrive",
packages: [],
options: .options(
automaticSchemesOptions: .enabled(
targetSchemesGrouping: .notGrouped
)
),
targets: [
.target(name: "kDrive",
destinations: Constants.destinations,
Expand Down

0 comments on commit 5ced948

Please sign in to comment.