Skip to content

Commit

Permalink
Use Xcode 15.3 in the github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
0111b committed Aug 2, 2024
1 parent 33be746 commit bd31812
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,26 @@ jobs:
name: Xcode ${{ matrix.xcode }}
strategy:
matrix:
xcode: ["14.3.1"]
xcode: ["15.3.0"]
include:
- xcode: "14.3.1"
macos: macos-13
- xcode: "15.3.0"
macos: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
steps:
- uses: actions/checkout@master
- name: Resolve
run: swift package resolve
- name: Build
run: swift build
- name: Test
run: set -o pipefail && swift test 2>&1 | xcpretty
- name: Gen fixtures
run: scripts/gen-fixtures.sh
- name: Check fixtures
run: scripts/diff-fixtures.sh
- name: Build fixtures
run: scripts/build-fixtures.sh
- uses: actions/checkout@master
- name: Resolve
run: swift package resolve
- name: Build
run: swift build
- name: Test
run: set -o pipefail && swift test 2>&1 | xcpretty
- name: Gen fixtures
run: scripts/gen-fixtures.sh
- name: Check fixtures
run: scripts/diff-fixtures.sh
- name: Build fixtures
run: scripts/build-fixtures.sh
run-linux:
runs-on: ubuntu-latest
name: Linux
Expand Down

0 comments on commit bd31812

Please sign in to comment.