diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5ecac8..bf47fe6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ on: jobs: format-lint: - runs-on: macos-14 + runs-on: macos-15 steps: - name: Install tools @@ -21,7 +21,7 @@ jobs: run: swiftformat . --lint test: - runs-on: macos-14 + runs-on: macos-15 strategy: matrix: scheme: [ @@ -34,14 +34,15 @@ jobs: steps: - name: Install tools - run: brew install xcbeautify + run: brew update && brew upgrade xcbeautify - uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: '15.4' + xcode-version: latest-stable - name: Checkout maplibre-swiftui-dsl-playground uses: actions/checkout@v4 - name: Test ${{ matrix.scheme }} on ${{ matrix.destination }} run: xcodebuild -scheme ${{ matrix.scheme }} test -skipMacroValidation -destination '${{ matrix.destination }}' | xcbeautify && exit ${PIPESTATUS[0]} + \ No newline at end of file