Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick-Kladek committed Nov 19, 2024
1 parent 28f287c commit 890cfb2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
format-lint:
runs-on: macos-14
runs-on: macos-15

steps:
- name: Install tools
Expand All @@ -21,7 +21,7 @@ jobs:
run: swiftformat . --lint

test:
runs-on: macos-14
runs-on: macos-15
strategy:
matrix:
scheme: [
Expand All @@ -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]}

0 comments on commit 890cfb2

Please sign in to comment.