Skip to content

Commit

Permalink
Update swift build execution environment to macOS13
Browse files Browse the repository at this point in the history
  • Loading branch information
Econa77 committed Oct 13, 2023
1 parent e9af065 commit 5dec182
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/Swift-Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,19 @@ name: Swift-Build
on: [push, pull_request]
jobs:
test:
runs-on: macos-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-12, macos-13]
xcode: ['14.2', '15.0']
exclude:
- os: macos-12
xcode: '15.0'
env:
DEVELOPER_DIR: "/Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Xcode select
run: sudo xcode-select -s /Applications/Xcode_11.4.app

- name: Build and Test
run: |
swift test
run: swift test

0 comments on commit 5dec182

Please sign in to comment.