Prepare CodeViewerKit 0.6.2 #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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| macos: | |
| name: macOS tests | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Test package | |
| run: swift test --configuration release | |
| ios: | |
| name: iOS build | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Build package | |
| run: >- | |
| xcodebuild | |
| -scheme CodeViewerKit | |
| -configuration Release | |
| -destination 'generic/platform=iOS Simulator' | |
| CODE_SIGNING_ALLOWED=NO | |
| build |