From 83ddf9f059a7a11e4cbcf5b0dda0f9800e29ffe7 Mon Sep 17 00:00:00 2001 From: cdricms <36056008+cdricms@users.noreply.github.com> Date: Fri, 24 Jul 2026 18:52:26 +0200 Subject: [PATCH] ci(apple): install SwiftLint for the required lint build phase The VniDrop target's SwiftLint pre-build phase is required (fails if missing), so the Apple CI job must have SwiftLint available. Add a brew install step. --- .github/workflows/apple.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/apple.yml b/.github/workflows/apple.yml index 0871d58..415aebe 100644 --- a/.github/workflows/apple.yml +++ b/.github/workflows/apple.yml @@ -65,6 +65,10 @@ jobs: - name: Install XcodeGen run: brew install xcodegen + - name: Install SwiftLint + # Required by the VniDrop target's SwiftLint build phase (typed-resources rules). + run: brew install swiftlint + - name: Install Bun # The Apple l10n catalog (Localizable.xcstrings) and L10n.swift are # generated from localization/strings.json at build time, not tracked.