Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Supported starting from macOS13 #25

Merged
merged 2 commits into from
Apr 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -7,19 +7,6 @@ on:
branches: [ master ]

jobs:
test-package-plugin-macos-12:
name: Test Package Plugin
runs-on: macos-12
strategy:
fail-fast: false
matrix:
xcode:
- '13.4.1' # Swift 5.6
steps:
- uses: actions/checkout@v2
- name: Test Package Plugin
run: swift package --allow-writing-to-package-directory format --lint

test-package-plugin-macos-13:
name: Test Package Plugin
runs-on: macos-13
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// swift-tools-version: 5.6
// swift-tools-version: 5.8
import PackageDescription

let package = Package(
name: "RakuyoSwift",
platforms: [.macOS(.v10_13)],
platforms: [.macOS(.v13)],
products: [
.plugin(name: "FormatSwift", targets: ["FormatSwift"]),
],
8 changes: 4 additions & 4 deletions Sources/RakuyoSwiftFormatTool/RakuyoSwiftFormatTool.swift
Original file line number Diff line number Diff line change
@@ -84,7 +84,7 @@ extension RakuyoSwiftFormatTool {
}

if
let swiftLintAutocorrectExitCode = swiftLintAutocorrectExitCode,
let swiftLintAutocorrectExitCode,
swiftLintAutocorrectExitCode != EXIT_SUCCESS
{
throw ExitCode(swiftLintAutocorrectExitCode)
@@ -104,15 +104,15 @@ extension RakuyoSwiftFormatTool {
"--config", swiftFormatConfig,
]

if let swiftFormatCachePath = swiftFormatCachePath {
if let swiftFormatCachePath {
arguments += ["--cache", swiftFormatCachePath]
}

if lint {
arguments += ["--lint"]
}

if let swiftVersion = swiftVersion {
if let swiftVersion {
arguments += ["--swiftversion", swiftVersion]
}

@@ -133,7 +133,7 @@ extension RakuyoSwiftFormatTool {
"--strict",
]

if let swiftLintCachePath = swiftLintCachePath {
if let swiftLintCachePath {
arguments += ["--cache-path", swiftLintCachePath]
}