-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 460e081
Showing
94 changed files
with
8,427 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Build and test | ||
|
||
on: | ||
push: | ||
branches: ['main'] | ||
pull_request: | ||
branches: ['main'] | ||
|
||
jobs: | ||
lunarbar-mac: | ||
name: LunarBarMac | ||
runs-on: macos-13 | ||
env: | ||
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app/Contents/Developer | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build LunarBarMac | ||
run: | | ||
xcodebuild build -scheme LunarBarMac -destination 'platform=macOS' CODE_SIGN_IDENTITY="" CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO | ||
- name: Test LunarBarKitTests | ||
run: | | ||
xcodebuild test -scheme LunarBarKitTests -destination 'platform=macOS' CODE_SIGN_IDENTITY="" CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO | ||
- name: Test LunarBarMacTests | ||
run: | | ||
xcodebuild test -scheme LunarBarMacTests -destination 'platform=macOS' CODE_SIGN_IDENTITY="" CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## System | ||
*.DS_Store | ||
|
||
## User settings | ||
xcuserdata/ | ||
Local.xcconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
project: LunarBar.xcodeproj | ||
retain_public: true | ||
schemes: | ||
- LunarBarMac | ||
targets: | ||
- LunarBarKit.LunarBarKit | ||
- LunarBarMac | ||
- Modules.AppKitControls | ||
- Modules.AppKitExtensions |
Oops, something went wrong.