Skip to content

Commit

Permalink
ci: Add CI unit test (#39)
Browse files Browse the repository at this point in the history
* Added unit test

* updated runner

* added environment
  • Loading branch information
joeldavidw authored Jul 23, 2024
1 parent 22bf5a1 commit 8fad422
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Unit Tests

on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
run_tests:
runs-on: macos-14
environment: ${{ github.event_name == 'push' && 'default' || 'ci-macos' }}
strategy:
matrix:
include:
- xcode: "15.4"
ios: "17.5"
name: iOS (${{ matrix.ios }})
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_${{ matrix.xcode }}.app && /usr/bin/xcodebuild -version
- name: Run unit tests
run: xcodebuild test -scheme 'Chronos Dev Release' -project Chronos.xcodeproj -destination 'platform=iOS Simulator,name=iPhone 15 Pro Max,OS=${{ matrix.ios }}' | xcpretty && exit ${PIPESTATUS[0]}

0 comments on commit 8fad422

Please sign in to comment.