Skip to content

Commit 32a7d18

Browse files
authored
Merge pull request #47 from p-x9/feature/support-swift6
2 parents e50fefe + d7e42dc commit 32a7d18

3 files changed

Lines changed: 34 additions & 16 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ permissions:
1717
contents: read
1818

1919
env:
20-
DEVELOPER_DIR: /Applications/Xcode_15.0.app
20+
DEVELOPER_DIR: /Applications/Xcode_16.3.app
2121

2222
jobs:
2323
build:
2424
name: Build & Test
25-
runs-on: macos-13
25+
runs-on: macos-15
2626
steps:
2727
- name: Checkout
2828
uses: actions/checkout@v4
2929

30-
- name: Select Xcode 15
31-
run: sudo xcode-select -s /Applications/Xcode_15.0.app
30+
- name: Select Xcode 16
31+
run: sudo xcode-select -s /Applications/Xcode_16.3.app
3232

3333
- name: Build
3434
run: swift build
@@ -43,7 +43,7 @@ jobs:
4343
- name: Install Swift
4444
uses: swift-actions/setup-swift@v2
4545
with:
46-
swift-version: '5.10.1'
46+
swift-version: '6.1.0'
4747

4848
- uses: actions/checkout@v4
4949

Package.resolved

Lines changed: 26 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ let package = Package(
1818
dependencies: [
1919
.package(
2020
url: "https://github.com/swiftlang/swift-syntax.git",
21-
"509.0.0"..<"511.0.0"
21+
"509.0.0"..<"602.0.0"
2222
),
2323
.package(
2424
url: "https://github.com/p-x9/swift-literal-type-inference.git",
25-
from: "0.3.0"
25+
from: "0.4.0"
2626
),
2727
.package(
2828
url: "https://github.com/p-x9/swift-object-association.git",
2929
from: "0.5.0"
3030
),
3131
.package(
3232
url: "https://github.com/pointfreeco/swift-macro-testing.git",
33-
from: "0.5.1"
33+
from: "0.6.1"
3434
)
3535

3636
],

0 commit comments

Comments
 (0)