Update app version to 1.6 #121
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "[CsvBuilder] Build and Test Sources" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
test_builder: | |
name: "Build CsvBuilder" | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
if: ${{ env.LOCAL != 'true' }} | |
with: | |
xcode-version: latest-stable | |
- name: Install xcbeautify | |
run: brew install xcbeautify | |
- name: Build and Test (osX) | |
run: | | |
set -o pipefail && \ | |
xcodebuild -scheme CsvBuilder \ | |
clean build test \ | |
-destination 'platform=OS X,arch=arm64' \ | |
| xcbeautify | |
- name: Build and Test (iOS) | |
run: | | |
set -o pipefail && \ | |
xcodebuild -scheme CsvBuilder \ | |
clean build test \ | |
-destination 'platform=iOS Simulator,name=iPhone 15' \ | |
| xcbeautify |