This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
Bring internal changes to public origin #27
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: Pull Request Workflow | |
on: [pull_request] | |
jobs: | |
run-tests: | |
runs-on: macOS-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Cancel previous jobs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Git checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.ref }} | |
- name: Setup Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Setup ruby and bundler dependencies | |
uses: ruby/[email protected] | |
with: | |
bundler-cache: true | |
- name: Run pod install | |
run: | | |
set -eo pipefail | |
export LIB_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`) | |
bundle exec pod install --project-directory=Example | |
- name: Run tests | |
run: bundle exec fastlane unit_tests device:'iPhone 11' | |
- name: Validate lib | |
run: | | |
set -eo pipefail | |
export LIB_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`) | |
bundle exec pod lib lint --allow-warnings |