feat: add customerio basic setup #13
Workflow file for this run
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: Code Quality Checks | |
on: | |
pull_request: | |
branches: ['master'] | |
types: ['opened', 'reopened', 'synchronize'] | |
jobs: | |
build: | |
name: Code Quality Checks | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout source branch | |
uses: actions/checkout@v3 | |
- name: Install Cocoapods | |
run: gem install cocoapods | |
- name: Execute pod lint | |
run: pod lib lint --no-clean --allow-warnings |