Skip to content

Commit 27ab882

Browse files
committed
🧹 Migrate to workspace over .swiftpm
1 parent 9f2f44f commit 27ab882

File tree

13 files changed

+8
-719
lines changed

13 files changed

+8
-719
lines changed

.github/workflows/checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: 🧰 Select Xcode Version
2424
run: sudo xcode-select -s "/Applications/Xcode_15.0.app/Contents/Developer"
2525
- name: 🧪 Run tests
26-
run: xcodebuild test -scheme "swift-nibbles-Package" -testPlan "swift-nibbles-Package" -destination "OS=17.0,name=iPhone 15 Pro"
26+
run: xcodebuild test -workspace "SwiftNibbles.xcworkspace" -scheme "swift-nibbles-Package" -testPlan "swift-nibbles-Package" -destination "OS=17.0,name=iPhone 15 Pro"
2727
- name: 📊 Upload Coverage
2828
uses: codecov/codecov-action@v4
2929
with:

.gitignore

Lines changed: 6 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,93 +1,7 @@
1-
# macOS
21
.DS_Store
3-
4-
# Xcode
5-
#
6-
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
7-
8-
## User settings
9-
xcuserdata/
10-
11-
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
12-
*.xcscmblueprint
13-
*.xccheckout
14-
15-
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
16-
build/
17-
DerivedData/
18-
*.moved-aside
19-
*.pbxuser
20-
!default.pbxuser
21-
*.mode1v3
22-
!default.mode1v3
23-
*.mode2v3
24-
!default.mode2v3
25-
*.perspectivev3
26-
!default.perspectivev3
27-
28-
## Obj-C/Swift specific
29-
*.hmap
30-
31-
## App packaging
32-
*.ipa
33-
*.dSYM.zip
34-
*.dSYM
35-
36-
## Playgrounds
37-
timeline.xctimeline
38-
playground.xcworkspace
39-
40-
# Swift Package Manager
41-
#
42-
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
43-
# Packages/
44-
# Package.pins
45-
# Package.resolved
46-
# *.xcodeproj
47-
#
48-
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
49-
# hence it is not needed unless you have added a package configuration file to your project
50-
# .swiftpm
51-
52-
.build/
53-
54-
# CocoaPods
55-
#
56-
# We recommend against adding the Pods directory to your .gitignore. However
57-
# you should judge for yourself, the pros and cons are mentioned at:
58-
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
59-
#
60-
# Pods/
61-
#
62-
# Add this line if you want to avoid checking in source code from the Xcode workspace
63-
# *.xcworkspace
64-
65-
# Carthage
66-
#
67-
# Add this line if you want to avoid checking in source code from Carthage dependencies.
68-
# Carthage/Checkouts
69-
70-
Carthage/Build/
71-
72-
# Accio dependency management
73-
Dependencies/
74-
.accio/
75-
76-
# fastlane
77-
#
78-
# It is recommended to not store the screenshots in the git repo.
79-
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
80-
# For more information about the recommended setup visit:
81-
# https://docs.fastlane.tools/best-practices/source-control/#source-control
82-
83-
fastlane/report.xml
84-
fastlane/Preview.html
85-
fastlane/screenshots/**/*.png
86-
fastlane/test_output
87-
88-
# Code Injection
89-
#
90-
# After new code Injection tools there's a generated folder /iOSInjectionProject
91-
# https://github.com/johnno1962/injectionforxcode
92-
93-
iOSInjectionProject/
2+
/.build
3+
/.swiftpm
4+
/Packages
5+
/*.swiftinterface
6+
/*.xcodeproj
7+
xcuserdata/

.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

Lines changed: 0 additions & 8 deletions
This file was deleted.

.swiftpm/xcode/package.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings

Lines changed: 0 additions & 8 deletions
This file was deleted.

.swiftpm/xcode/xcshareddata/xcschemes/Extensions.xcscheme

Lines changed: 0 additions & 71 deletions
This file was deleted.

.swiftpm/xcode/xcshareddata/xcschemes/Fuse.xcscheme

Lines changed: 0 additions & 71 deletions
This file was deleted.

.swiftpm/xcode/xcshareddata/xcschemes/Identified.xcscheme

Lines changed: 0 additions & 71 deletions
This file was deleted.

0 commit comments

Comments
 (0)