Skip to content

Commit

Permalink
Merge pull request #21 from ensan-hcl/refactoring/support_swift_5_9
Browse files Browse the repository at this point in the history
[Refactoring] Swiftバージョンを5.9に更新
  • Loading branch information
ensan-hcl authored Sep 23, 2023
2 parents 5592821 + 704695a commit bbe85eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
runs-on: macos-latest

steps:
- uses: swift-actions/setup-swift@65540b95f51493d65f5e59e97dcef9629ddf11bf
- uses: swift-actions/setup-swift@150267bf6ba01f9d942a4bd55aa2f35ba586767d
with:
swift-version: "5.8"
swift-version: "5.9"
- uses: actions/checkout@v3
- name: Build
run: swift build -Xswiftc -strict-concurrency=complete -v
Expand Down
6 changes: 4 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 5.8
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand All @@ -9,7 +9,9 @@ let swiftSettings: [SwiftSetting] = [
.enableUpcomingFeature("ExistentialAny"),
.enableUpcomingFeature("ForwardTrailingClosures"),
.enableUpcomingFeature("ImplicitOpenExistentials"),
.enableUpcomingFeature("StrictConcurrency")
.enableUpcomingFeature("StrictConcurrency"),
.enableUpcomingFeature("DisableOutwardActorInference"),
.enableUpcomingFeature("ImportObjcForwardDeclarations")
]
let package = Package(
name: "AzooKeyKanakanjiConverter",
Expand Down

0 comments on commit bbe85eb

Please sign in to comment.