Skip to content

去掉 ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES 设置 #191

去掉 ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES 设置

去掉 ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES 设置 #191

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
tests:
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Select Xcode Version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '14.0.1'
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.2
bundler-cache: true
- uses: actions/cache@v2
id: pods-cache
with:
path: Pods
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Install Pods
run: pod install
- name: Run Tests
run: |
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
bundle exec fastlane tests