Skip to content

feat(ci): add CI workflow (xcodebuild -scheme Afterimage -configuration Debug test -destination 'generic/platform=iOS Simulator') #1

feat(ci): add CI workflow (xcodebuild -scheme Afterimage -configuration Debug test -destination 'generic/platform=iOS Simulator')

feat(ci): add CI workflow (xcodebuild -scheme Afterimage -configuration Debug test -destination 'generic/platform=iOS Simulator') #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: |
xcodebuild test \
-scheme "Afterimage" \
-destination "platform=iOS Simulator,name=iPhone 16" \
CODE_SIGNING_ALLOWED=NO