Skip to content

chore: session state & metrics for 2026-04-21 triage follow-up session #14

chore: session state & metrics for 2026-04-21 triage follow-up session

chore: session state & metrics for 2026-04-21 triage follow-up session #14

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_16.2.app
- name: Build
run: |
xcodebuild -project DevWatchdog.xcodeproj \
-scheme DevWatchdog \
-configuration Release \
-derivedDataPath build \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
build
- name: Test
run: |
xcodebuild -project DevWatchdog.xcodeproj \
-scheme DevWatchdog \
-configuration Debug \
-derivedDataPath build \
-destination 'platform=macOS' \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
test
- name: Upload artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
with:
name: DevWatchdog.app
path: build/Build/Products/Release/DevWatchdog.app