Skip to content

Commit

Permalink
github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel R committed May 31, 2021
1 parent 2abb676 commit 5953ba6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
push:
branches: '**'
pull_request:

jobs:
build:
name: Build on ${{ matrix.os }}
runs-on: macos-11.0
steps:
- name: Checkout
uses: actions/checkout@v2

- name: setup-cocoapods
uses: maxim-lobanov/setup-cocoapods@v1
with:
podfile-path: Demo/Podfile.lock

- uses: sersoft-gmbh/xcodebuild-action@v1
with:
workspace: Demo/SwiftyLocalReceiptValidatorDemo.xcworkspace
scheme: SwiftyLocalReceiptValidatorDemo
destination: 'platform=iOS Simulator,OS=14.4,name=iPhone 12'
action: build

0 comments on commit 5953ba6

Please sign in to comment.