diff --git a/.github/workflows/lint-prebid-podspec.yml b/.github/workflows/lint-prebid-podspec.yml new file mode 100644 index 0000000..2e1e49b --- /dev/null +++ b/.github/workflows/lint-prebid-podspec.yml @@ -0,0 +1,23 @@ +name: Lint Pull Requests for UID2Prebid + +on: + pull_request: + paths: + - UID2Prebid.podspec.json + + # this allows us to manually run this job + workflow_dispatch: + +jobs: + lint-podspec: + name: Lint UID2Prebid Podspec + runs-on: macos-15 + + steps: + - uses: actions/checkout@v4 + + - name: Select Xcode 16.4 + run: sudo xcode-select -s /Applications/Xcode_16.4.app + + - name: Lint OpenPass podspec + run: pod lib lint UID2Prebid.podspec.json --verbose diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml index 1bed287..6dc432f 100644 --- a/.github/workflows/test-pull-request.yml +++ b/.github/workflows/test-pull-request.yml @@ -45,9 +45,6 @@ jobs: - name: Lint UID2 pod spec run: pod lib lint UID2.podspec.json --verbose - - name: Lint UID2Prebid pod spec - run: pod lib lint UID2Prebid.podspec.json --verbose - vulnerability-scan: name: Vulnerability Scan runs-on: ubuntu-latest