Skip to content

Update Podfile.lock and fix Fastfile to do it next time #36

Update Podfile.lock and fix Fastfile to do it next time

Update Podfile.lock and fix Fastfile to do it next time #36

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- master
jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- name: Bundle install
uses: ruby/setup-ruby@v1
with:
bundler: "Gemfile.lock"
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Pods cache
uses: actions/cache@v3
with:
path: Pods
key: ${{ runner.os }}-cocoapods-${{ hashFiles('**/Podfile.lock') }}
- name: Pod install
run: |
if [ ! -d "Pods" ]; then
bundle exec pod install
fi
- name: Build and test
run: bundle exec fastlane ci_check
- name: Pod lib lint
run: pod lib lint