Skip to content

Commit

Permalink
🎉 Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cyanzhong committed Jan 2, 2024
0 parents commit 460e081
Show file tree
Hide file tree
Showing 94 changed files with 8,427 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build-and-test.yml
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
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## System
*.DS_Store

## User settings
xcuserdata/
Local.xcconfig
9 changes: 9 additions & 0 deletions .periphery.yml
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
Loading

0 comments on commit 460e081

Please sign in to comment.