Skip to content

Fix utf 16 link + bump minimum version #49

Fix utf 16 link + bump minimum version

Fix utf 16 link + bump minimum version #49

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
types: [opened, reopened, edited, synchronize]
branches:
- master
jobs:
check:
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Lint
run: pod lib lint
- name: Build & test macOS
run: |
swift build
swift test
- name: Build & test iOS
run: |
swift package generate-xcodeproj --output temp && cd temp
xcodebuild build -sdk iphoneos -scheme 'MarkdownKit iOS'
xcodebuild test -destination 'name=iPhone 16' -scheme 'MarkdownKit iOS'
cd .. && rm -r temp