Skip to content

updated swift-syntax to latest stable version #32

updated swift-syntax to latest stable version

updated swift-syntax to latest stable version #32

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build and test
runs-on: macos-15
steps:
- name: Check out project
uses: actions/checkout@v4
- name: Xcode Version
run: xcodebuild -version
- name: Build And Test macOS
run: xcodebuild -workspace *.xcworkspace -scheme "Hamcrest-macOS" build test | xcpretty && exit ${PIPESTATUS[0]}
- name: Build And Test iOS
run: xcodebuild -workspace *.xcworkspace -scheme "Hamcrest-iOS" -sdk iphonesimulator -destination "platform=iOS Simulator,OS=latest,name=iPhone 16" build test | xcpretty && exit ${PIPESTATUS[0]}
- name: Cocoapods Check
run: pod spec lint --quick