Bump version to 0.5.3 #67
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: macos-26 | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Show Xcode version | |
| run: xcodebuild -version | |
| - name: Run test suite | |
| run: | | |
| xcodebuild test \ | |
| -project Octodot.xcodeproj \ | |
| -scheme Octodot \ | |
| -destination 'platform=macOS,arch=arm64' \ | |
| -derivedDataPath .deriveddata \ | |
| CURRENT_PROJECT_VERSION="${{ github.run_number }}" | |
| - name: Verify Release build | |
| run: | | |
| xcodebuild build \ | |
| -project Octodot.xcodeproj \ | |
| -scheme Octodot \ | |
| -configuration Release \ | |
| -destination 'generic/platform=macOS' \ | |
| -derivedDataPath .deriveddata-release \ | |
| CURRENT_PROJECT_VERSION="${{ github.run_number }}" |