Skip to content

Commit

Permalink
Separate CocoaPods Lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ikesyo committed Nov 15, 2019
1 parent 9051f84 commit d21a1b3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 12 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,6 @@ on:
- '*'

jobs:
cocoapods:
name: CocoaPods Lint
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.x'
- run: sudo xcode-select -s '/Applications/Xcode_11.1.app'
- run: bundle install --jobs=8
- run: ./test podspec

xcode:
name: Xcode ${{ matrix.xcode }} - ${{ matrix.platform }}
runs-on: macOS-latest
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/pod_lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CocoaPods Lint

on:
push:
branches:
- master
pull_request:
branches:
- '*'

jobs:
pod_lint:
name: CocoaPods Lint
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.x'
- run: sudo xcode-select -s '/Applications/Xcode_11.app'
- run: bundle install --jobs=8
- run: ./test podspec

0 comments on commit d21a1b3

Please sign in to comment.