Skip to content

Merge pull request #32 from jasonlong/release/v0.5.8 #126

Merge pull request #32 from jasonlong/release/v0.5.8

Merge pull request #32 from jasonlong/release/v0.5.8 #126

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
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@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
persist-credentials: false
- 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 }}"