diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5976cb1a0..cc9cce6fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/Project.swift b/Project.swift index 6eb3937b7..7ac81dae1 100644 --- a/Project.swift +++ b/Project.swift @@ -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,