Add Privacy Manifest #160
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: CI | |
on: [pull_request] | |
# See this page for available Xcode versions: | |
# https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.1.4 | |
bundler-cache: true | |
- name: Pods cache | |
uses: actions/cache@v2 | |
with: | |
path: Pods | |
key: ${{ runner.os }}-cocoapods-${{ hashFiles('**/Podfile.lock') }} | |
- name: Pod install | |
run: bundle exec pod install | |
- name: Build and test | |
env: | |
GITHUB_API_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN_CI }} | |
run: bundle exec fastlane ci_check |