Bump actions/checkout from 3 to 4 #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Cocoapods | |
on: | |
push: | |
branches: master | |
pull_request: | |
jobs: | |
lint: | |
name: Pod Lint | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- | |
name: Lint podspec | |
run: bundle exec rake pod:lint |