Add swift-create-sign-upload-xcframework GitHub Action workflow #36
This file contains 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: SwiftLint | |
on: [pull_request] | |
jobs: | |
swiftlint: | |
runs-on: macos-latest | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v2 | |
- name: Install SwiftLint | |
run: brew install swiftlint | |
- name: Run SwiftLint | |
run: swiftlint | |