-
Notifications
You must be signed in to change notification settings - Fork 4
36 lines (34 loc) · 876 Bytes
/
lib.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: "[Csv2Img] Build and Test Sources"
on:
push:
branches:
- main
pull_request:
branches:
- main
- develop
jobs:
test:
name: "Build Csv2Img"
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Install xcbeautify
run: brew install xcbeautify
- name: Build and Test (osX)
run: |
set -o pipefail && \
xcodebuild -scheme Csv2Img \
clean build test \
-destination 'platform=OS X,arch=x86_64' \
| xcbeautify
- name: Build and Test (iOS)
run: |
set -o pipefail && \
xcodebuild -scheme Csv2Img \
clean build test \
-destination 'platform=iOS Simulator,name=iPhone 13' \
| xcbeautify