Skip to content

chore(deps): bump rexml from 3.2.6 to 3.2.8 #87

chore(deps): bump rexml from 3.2.6 to 3.2.8

chore(deps): bump rexml from 3.2.6 to 3.2.8 #87

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
destination: ['iOS Simulator,name=iPhone 8']
swift-version: [5.0, 4.2, 4.0]
steps:
- uses: actions/checkout@v2
- name: setup-cocoapods
uses: maxim-lobanov/[email protected]
with:
podfile-path: Example/Podfile.lock
- name: Install Dependencies
run: |
cd Example
pod install --repo-update
- name: Xcodebuild Action
uses: sersoft-gmbh/[email protected]
with:
# The path to the xcworkspace to build. Mutually exclusive with `project`.
workspace: Example/EmptyPage.xcworkspace
# The scheme to build. Required when using a workspace.
scheme: EmptyPage-Example
# The destination specifier to build.
destination: ${{ matrix.destination }}
# The action to perform (e.g. build, test, ...).
action: build
# Whether the output of xcodebuild should be forwarded to xcpretty.
use-xcpretty: true
env:
destination: ${{ matrix.destination }}