Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jihoonahn authored Jun 1, 2024
1 parent 389afb3 commit 941d77f
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- main
- case-key-paths
pull_request:
branches:
- '*'
Expand All @@ -15,26 +14,28 @@ concurrency:
cancel-in-progress: true

jobs:
macos:
name: macos 13 (Xcode 15.0.0)
runs-on: macos-13
strategy:
matrix:
config:
- debug
- release
steps:
- name: Set Xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0'
- name: Checkout Package
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: View Swift Version
run: swift --version
- name: Build and Test
run: |
swift build
swift test
library-swift-latest:
name: Library
runs-on: macos-14
strategy:
matrix:
config:
- debug
- release
steps:
- uses: actions/checkout@v4
- name: Select Xcode 15.2
run: sudo xcode-select -s /Applications/Xcode_15.2.app

- name: Checkout Package
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: View Swift Version
run: swift --version

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

0 comments on commit 941d77f

Please sign in to comment.