Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Apr 13, 2024
1 parent f8b9ce4 commit 99c1950
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,12 @@ jobs:
strategy:
fail-fast: false
matrix:
xcode: ["14.1", "13.4.1", "13.2.1"]
xcode: ["15.0", "15.3"]
include:
- xcode: "14.1"
macos: macOS-12
- xcode: "13.4.1"
macos: macOS-12
- xcode: "13.2.1"
macos: macOS-11
- xcode: "15.3"
macos: macOS-14
- xcode: "15.0"
macos: macOS-14
runs-on: ${{ matrix.macos }}
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
Expand All @@ -35,7 +33,7 @@ jobs:
strategy:
fail-fast: false
matrix:
swift: ["5.5", "5.6"]
swift: ["5.9"]
runs-on: ubuntu-latest
container: swift:${{ matrix.swift }}
steps:
Expand All @@ -45,14 +43,15 @@ jobs:

discover-typos:
name: Discover Typos
runs-on: macOS-12
runs-on: macOS-14
env:
DEVELOPER_DIR: /Applications/Xcode_14.1.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_15.3.app/Contents/Developer
steps:
- uses: actions/checkout@v2
- name: Discover typos
run: |
export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/3.11/bin"
echo /Library/Frameworks/Python.framework/Versions/
export PATH="$PATH:/Library/Frameworks/Python.framework/Versions/3.12.2/bin"
python3 -m pip install --upgrade pip
python3 -m pip install codespell
codespell --ignore-words-list="hart,inout,msdos,sur" --skip="./.build/*,./Tests/GetTests/Mocker/*,./.git/*"

0 comments on commit 99c1950

Please sign in to comment.