Skip to content

Feature/attributed string #139

Feature/attributed string

Feature/attributed string #139

Workflow file for this run

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