Skip to content

Update docs (#51)

Update docs (#51) #165

Workflow file for this run

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