Deprecated reject method with Reject enum and replace it with String #226
Workflow file for this run
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: lint | |
on: | |
push: | |
branches: | |
- develop | |
- master | |
pull_request: | |
jobs: | |
pod: | |
name: Pod Lib Lint | |
runs-on: macos-13 | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v2 | |
- name: Set proper xcode version | |
run: sh ./scripts/xcodeselect.sh | |
- name: Lint | |
run: pod lib lint --allow-warnings | |
swift: | |
name: Swift Lint | |
runs-on: macos-13 | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v2 | |
- name: Lint | |
run: sh ./scripts/swiftlint.sh |