Update to recommended settings for ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES #613
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: Run Unit Tests | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review] | |
workflow_dispatch: | |
jobs: | |
build_and_test: | |
runs-on: macos-14 | |
if: ${{ github.event.pull_request.draft == false }} | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
bundle install --redownload | |
- name: Fastlane unit tests | |
env: | |
LANG: en_US.UTF-8 | |
LC_ALL: en_US.UTF-8 | |
FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT: 60 | |
uses: maierj/[email protected] | |
with: | |
lane: unittests |