Skip to content

Commit

Permalink
Create pod-lib-lint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
loay-ashraf committed Aug 25, 2023
1 parent 5f1a12b commit ef93c9b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/pod-lib-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Cocoapods Library Lint

on:
push:
branches:
- '!main'
pull_request:
branches:
- '!main'

jobs:
pod-lib-lint:
name: Lint Library For Cocoapods
runs-on: macos-13

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set Xcode Version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '14.2'
- name: Install Cocoapods
run: |
sudo gem install cocoapods
- name: Library Lint
run: |
pod lib lint --allow-warnings --verbose

0 comments on commit ef93c9b

Please sign in to comment.