show icon image in repo readme #14
This file contains hidden or 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
| name: Continuous Integration | |
| on: [push, pull_request] | |
| jobs: | |
| build-check: | |
| # keep this up to date! | |
| runs-on: macos-26 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install xcodegen | |
| run: brew install xcodegen | |
| - name: generate project | |
| run: xcodegen generate | |
| - name: build check | |
| run: | | |
| xcodebuild \ | |
| -project Lufsa.xcodeproj \ | |
| -scheme Lufsa \ | |
| -destination 'platform=macOS' \ | |
| -configuration Release |