diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 7daf5d2..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Unit Tests - -on: - pull_request: - branches: - - main - push: - branches: - - main - -jobs: - run_tests: - runs-on: macos-15 - environment: ${{ github.event_name == 'push' && 'default' || 'ci-macos' }} - strategy: - matrix: - include: - - xcode: "16.1" - ios: "18.1" - name: iOS (${{ matrix.ios }}) - steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - 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 16 Pro Max,OS=${{ matrix.ios }}' | xcpretty && exit ${PIPESTATUS[0]}