From 99c1950a32bdb5dbf76b859bd8181d6876e8fd34 Mon Sep 17 00:00:00 2001 From: kean Date: Sat, 13 Apr 2024 12:42:49 -0400 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3527ac7..0fb861a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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: @@ -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/*"