We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2abb676 commit 62640b6Copy full SHA for 62640b6
.github/workflows/build.yml
@@ -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
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