From fd93712e9803a161eff7fc157a4785c296aafa9e Mon Sep 17 00:00:00 2001 From: "Takuto NAKAMURA (Kyome)" Date: Sat, 4 Jan 2025 23:27:35 +0900 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2ba8819..3d23194 100644 --- a/README.md +++ b/README.md @@ -41,9 +41,9 @@ $ ## Requirements +- Development with Xcode 16.0+ - Written in Swift 6.0 - Compatible with macOS 14.0+ -- Development with Xcode 16.0+ ## How to Use From 5d39fada87d5feda395646d243dbd26e60b66c07 Mon Sep 17 00:00:00 2001 From: "Takuto NAKAMURA (Kyome)" Date: Sat, 4 Jan 2025 23:28:05 +0900 Subject: [PATCH 2/2] Use xcbeautify instead of xcpretty --- .github/workflows/release-artifact-bundle.yml | 4 ++-- .github/workflows/test.yml | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release-artifact-bundle.yml b/.github/workflows/release-artifact-bundle.yml index 2992bcb..d897d6b 100644 --- a/.github/workflows/release-artifact-bundle.yml +++ b/.github/workflows/release-artifact-bundle.yml @@ -11,12 +11,12 @@ jobs: runs-on: macos-14 timeout-minutes: 20 env: - DEVELOPER_DIR: "/Applications/Xcode_16.0.app/Contents/Developer" + DEVELOPER_DIR: "/Applications/Xcode_16.app/Contents/Developer" ARTIFACT_BUNDLE: "license-checker.artifactbundle" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Show Xcode Version run: xcodebuild -version diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d43a896..e2de11a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: runs-on: macos-14 timeout-minutes: 20 env: - DEVELOPER_DIR: "/Applications/Xcode_16.0.app/Contents/Developer" + DEVELOPER_DIR: "/Applications/Xcode_16.app/Contents/Developer" steps: - name: Checkout @@ -21,7 +21,7 @@ jobs: - name: Run Test run: | xcodebuild test \ - -scheme LicenseChecker \ - -destination "platform=macOS" \ - -resultBundlePath TestsResult | \ - xcpretty -c && exit ${PIPESTATUS[0]} + -scheme LicenseChecker \ + -destination "platform=macOS" \ + -resultBundlePath TestsResult | \ + xcbeautify && exit ${PIPESTATUS[0]}