feature: Use typed throws within deep link handling and navigator. #168
Workflow file for this run
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: 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" |