Update README to remove the manual publish to cocoapod step and point to GH action #147
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 | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
jobs: | |
build: | |
name: Run lint | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Cocoapods | |
run: gem install cocoapods | |
- name: Deploy to Cocoapods | |
run: | | |
set -eo pipefail | |
pod spec lint LibXMTP.podspec --allow-warnings |