Skip to content

Commit

Permalink
Remove unneeded flag and add clarifying comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ncooke3 committed Jan 26, 2024
1 parent bbea625 commit 7849fb5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/spm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: pod lib lint leveldb-library.podspec --platforms=${{ matrix.platform }} --no-clean --skip-import-validation
# Some header files import C++ headers, which causes linting failures
# (https://github.com/CocoaPods/CocoaPods/issues/5152). As a
# workaround, the `--skip-import-validation` is used.
run: pod lib lint leveldb-library.podspec --platforms=${{ matrix.platform }} --skip-import-validation

0 comments on commit 7849fb5

Please sign in to comment.