Skip to content

chore: bump to v0.1.1 #11

chore: bump to v0.1.1

chore: bump to v0.1.1 #11

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
env:
SCHEME: buddi
DEVELOPER_DIR: /Applications/Xcode_26.4.app/Contents/Developer
jobs:
build:
runs-on: macos-26
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Resolve packages
run: |
xcodebuild -resolvePackageDependencies \
-scheme "$SCHEME" \
-clonedSourcePackagesDirPath .spm
- name: Build
run: |
xcodebuild build \
-scheme "$SCHEME" \
-destination 'platform=macOS' \
-configuration Debug \
-clonedSourcePackagesDirPath .spm \
CODE_SIGNING_ALLOWED=NO \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGN_IDENTITY="-" \
| xcpretty || exit ${PIPESTATUS[0]}