Skip to content

Update 2.0.0 docs, migration, and usage guide #86

Update 2.0.0 docs, migration, and usage guide

Update 2.0.0 docs, migration, and usage guide #86

Workflow file for this run

name: Swift
on:
push:
branches: [ master, new-version ]
pull_request:
jobs:
build-and-test:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode.app
- name: Build
run: swift build
- name: Test
run: swift test
- name: Build Showcase App
run: |
cd Examples/SwiftUIChartsShowcase
xcodebuild \
-project SwiftUIChartsShowcase.xcodeproj \
-scheme SwiftUIChartsShowcase \
-sdk iphonesimulator \
-destination "generic/platform=iOS Simulator" \
CODE_SIGNING_ALLOWED=NO \
build