Skip to content

feature: Use typed throws within deep link handling and navigator. #168

feature: Use typed throws within deep link handling and navigator.

feature: Use typed throws within deep link handling and navigator. #168

Workflow file for this run

name: SwiftUICoordinator
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: macos-latest
env:
PROJECT: Example/SwiftUICoordinatorExample/SwiftUICoordinatorExample.xcodeproj
DEVELOPER_DIR: /Applications/Xcode_16.2.app/Contents/Developer
SCHEME: SwiftUICoordinator
DESTINATION: platform=iOS Simulator,name=iPhone 15,OS=17.0.1
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Select Xcode
run: sudo xcode-select --switch $DEVELOPER_DIR
- name: Clear Derived Data
run: |
rm -rf ~/Library/Developer/Xcode/DerivedData/*
- name: Install SwiftLint
run: |
brew install swiftlint
- name: Run SwiftLint
run: swiftlint
- name: List Available Simulators
run: xcrun simctl list devices
- name: Build and test
run: |
swift package update
xcodebuild clean test -project $PROJECT -scheme $SCHEME -destination "$DESTINATION"