Skip to content

Commit

Permalink
Remove .swift-version when verifying podspec (#787)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersio committed May 23, 2020
1 parent 172d31b commit 9504c5f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
uses: actions/checkout@v2
- name: CocoaPods verification
run: |
# To work around the lint error: "ERROR | swift: Specification `ReactiveSwift` specifies an inconsistent `swift_version` (`4.1`) compared to the one present in your `.swift-version` file (`4.1.2`). Please remove the `.swift-version` file which is now deprecated and only use the `swift_version` attribute within your podspec."
# `.swift-version` is for swiftenv, not for CocoaPods, so we can't remove the file as suggested.
rm .swift-version
pod repo update
pod lib lint --use-libraries

0 comments on commit 9504c5f

Please sign in to comment.