Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/lint-prebid-podspec.yml
Original file line number Diff line number Diff line change
@@ -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
3 changes: 0 additions & 3 deletions .github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading