Skip to content

Commit 62640b6

Browse files
author
Daniel R
committed
github action
1 parent 2abb676 commit 62640b6

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/build.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: '**'
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
name: Build on ${{ matrix.os }}
11+
runs-on: macos-11.0
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
16+
- name: setup-cocoapods
17+
uses: maxim-lobanov/setup-cocoapods@v1
18+
with:
19+
podfile-path: Demo/Podfile.lock
20+
21+
- uses: sersoft-gmbh/xcodebuild-action@v1
22+
with:
23+
worskpace: Demo/SwiftyLocalReceiptValidatorDemo.xcworkspace
24+
scheme: SwiftyLocalReceiptValidatorDemo
25+
destination: 'platform=iOS Simulator,OS=14.4,name=iPhone 12'
26+
action: build

0 commit comments

Comments
 (0)