Fix bwv1041 velocity settings #25
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: ScoreMaker CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| macos: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build and test | |
| run: make test | |
| - name: Run Xcode test bundle | |
| run: >- | |
| xcodebuild -project ScoreMaker.xcodeproj | |
| -scheme ScoreMakerCompatibilityTests | |
| -configuration Debug test CODE_SIGNING_ALLOWED=NO | |
| - name: Verify application metadata | |
| run: | | |
| plutil -lint Info.plist ScoreMaker.entitlements | |
| sh -n tools/release.sh tools/install.sh | |
| - name: Archive test results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: scoremaker-test-build | |
| path: build/ |