Skip to content

Replace hero with monochrome particle artwork #12

Replace hero with monochrome particle artwork

Replace hero with monochrome particle artwork #12

Workflow file for this run

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