Replace hero with monochrome particle artwork #12
Workflow file for this run
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: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: macos-26 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Show Xcode version | |
| run: xcodebuild -version | |
| - name: Validate package | |
| run: swift package dump-package | |
| - name: Build package for iOS Simulator | |
| run: >- | |
| xcodebuild -scheme Aither | |
| -destination 'generic/platform=iOS Simulator' | |
| CODE_SIGNING_ALLOWED=NO build | |
| - name: Test package | |
| run: >- | |
| xcodebuild -scheme Aither | |
| -destination 'platform=iOS Simulator,name=iPhone 17 Pro,OS=latest' | |
| test | |
| - name: Build preview application | |
| run: >- | |
| xcodebuild -project Example/AitherPreview.xcodeproj | |
| -scheme AitherPreview | |
| -destination 'generic/platform=iOS Simulator' | |
| CODE_SIGNING_ALLOWED=NO build |