diff --git a/.github/workflows/iOS-pod-lint.yml b/.github/workflows/iOS-pod-lint.yml new file mode 100644 index 000000000..d78089287 --- /dev/null +++ b/.github/workflows/iOS-pod-lint.yml @@ -0,0 +1,26 @@ +name: Validate Podspecs +on: [push, pull_request] + +jobs: + lint-flipperkit_pod: + runs-on: macos-latest + + steps: + - uses: actions/checkout@v2 + - name: Install Dependences + run: pod repo update + + - name: Lint FlipperKit + run: pod spec lint FlipperKit.podspec --use-libraries --allow-warnings --verbose --skip-import-validation + + lint-flipper_pod: + runs-on: macos-latest + + steps: + - uses: actions/checkout@v2 + - name: Install Dependences + run: pod repo update + - name: Lint Flipper + run: pod spec lint Flipper.podspec --use-libraries --allow-warnings --verbose + +