Fix issue with ambiguous use of function in Xcode 26.4 #2403
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Swift Package SwiftLint | |
| on: | |
| push: | |
| paths: | |
| - '.github/workflows/package-swiftlint.yml' | |
| - '.swiftlint.yml' | |
| - '!Examples/**' | |
| - '**/*.swift' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| Package-SwiftLint: | |
| # The type of runner that the job will run on | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: GitHub Action for SwiftLint | |
| uses: norio-nomura/action-swiftlint@3.2.1 | |
| with: | |
| args: --config .swiftlint.yml |