updated swift-syntax to latest stable version #32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |