Skip to content

Update swift.yml

Update swift.yml #23

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Swift
on:
push:
branches: [ "iOS" ]
pull_request:
branches: [ "iOS" ]
jobs:
build:
runs-on: macos-lastest
steps:
- uses: actions/checkout@v3
- name: Build
run: |
xcodebuild clean test -project Village.xcodeproj \
-scheme Village \
-destination 'platform=iOS Simulator,name=iPhone 13,OS=latest'
-allowProvisioningUpdates
-skipPackagePluginValidation