Skip to content

Commit 093927a

Browse files
committed
Update ci.yml
1 parent f8b9ce4 commit 093927a

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

.github/workflows/ci.yml

+10-11
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,12 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
xcode: ["14.1", "13.4.1", "13.2.1"]
17+
xcode: ["15.0", "15.3"]
1818
include:
19-
- xcode: "14.1"
20-
macos: macOS-12
21-
- xcode: "13.4.1"
22-
macos: macOS-12
23-
- xcode: "13.2.1"
24-
macos: macOS-11
19+
- xcode: "15.3"
20+
macos: macOS-14
21+
- xcode: "15.0"
22+
macos: macOS-14
2523
runs-on: ${{ matrix.macos }}
2624
env:
2725
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
@@ -35,7 +33,7 @@ jobs:
3533
strategy:
3634
fail-fast: false
3735
matrix:
38-
swift: ["5.5", "5.6"]
36+
swift: ["5.9"]
3937
runs-on: ubuntu-latest
4038
container: swift:${{ matrix.swift }}
4139
steps:
@@ -45,14 +43,15 @@ jobs:
4543

4644
discover-typos:
4745
name: Discover Typos
48-
runs-on: macOS-12
46+
runs-on: macOS-14
4947
env:
50-
DEVELOPER_DIR: /Applications/Xcode_14.1.app/Contents/Developer
48+
DEVELOPER_DIR: /Applications/Xcode_15.3.app/Contents/Developer
5149
steps:
5250
- uses: actions/checkout@v2
5351
- name: Discover typos
5452
run: |
55-
export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/3.11/bin"
53+
ls /Library/Frameworks/Python.framework/Versions/
54+
export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/3.12.2/bin"
5655
python3 -m pip install --upgrade pip
5756
python3 -m pip install codespell
5857
codespell --ignore-words-list="hart,inout,msdos,sur" --skip="./.build/*,./Tests/GetTests/Mocker/*,./.git/*"

0 commit comments

Comments
 (0)