CI #14552
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: CI | |
# This workflow is triggered on pushes to the repository. | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '*/1440 * * * *' | |
jobs: | |
test: | |
# Job name is Test | |
name: Test | |
# This job runs on macOS | |
runs-on: macOS-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Dependencies | |
run: | | |
sudo gem install cocoapods | |
pod repo update | |
- name: Build | |
run: pod lib lint --use-libraries --allow-warnings || pod lib lint --allow-warnings |