Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 545 Bytes

File metadata and controls

25 lines (16 loc) · 545 Bytes

Validate Xcode Project file is sorted

This GitHub Action validates if an Xcode project file is sorted.

When working with other developers, you may find it easier to merge project files that are sorted alphabetically.

Inputs

project-path

Required The path to the Xcode project file.

report-warnings-as-error

Optional Report warnings as errors. Defaults to false.

Example usage

uses: nthState/ValidateXcodeProjectSorted
with:
  project-path: './ios/App.xcodeproj'
  report-warnings-as-error: true