Skip to content

Fix all compiler warnings #10

Fix all compiler warnings

Fix all compiler warnings #10

Workflow file for this run

name: Build & Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: List available simulators
run: xcrun simctl list devices available | head -30
- name: Build
run: |
xcodebuild build \
-project Facett.xcodeproj \
-scheme Facett \
-destination "generic/platform=iOS Simulator" \
-quiet
- name: Run Unit Tests
run: |
xcodebuild test \
-project Facett.xcodeproj \
-scheme Facett \
-destination "platform=iOS Simulator,name=iPhone 16" \
-only-testing:FacettTests/ParserTests \
-only-testing:FacettTests/SettingsTests \
-quiet