Skip to content

Changed stored properties from nonatomic to atomic for thread safety #5

Changed stored properties from nonatomic to atomic for thread safety

Changed stored properties from nonatomic to atomic for thread safety #5

Workflow file for this run

name: Xcode Build
on:
pull_request:
branches: ["master"]
paths: ["!docs/**", "!.github/**", "!**.md", "!**.yml"]
push:
branches: ["master"]
paths: ["!docs/**", "!.github/**", "!**.md", "!**.yml"]
jobs:
build:
name: Build AppBox
runs-on: macos-latest
steps:
- name: Checkout repository

Check failure on line 14 in .github/workflows/xcodebuild.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/xcodebuild.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
uses: actions/checkout@v4
- name: Use latest Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest
- name: Build App
run: |
set -o pipefail
xcodebuild clean build -project AppBox.xcodeproj -scheme AppBox CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO 2>&1 | tee build.log
if [ ${PIPESTATUS[0]} -ne 0 ]; then
echo "::error::Build failed"
exit 1
fi