Skip to content

Commit

Permalink
Create RunTest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ericKwon95 authored Jan 20, 2024
1 parent 34088c5 commit aaf55c6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/RunTest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# 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: Run Test

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Start xcode build
run: |
pod install --repo-update --clean-install --project-directory=iOS/FlipMate/
xcodebuild clean test -workspace iOS/FlipMate/FlipMate.xcworkspace -scheme FlipMate -destination 'platform=iOS Simulator,name=iPhone 15 Pro,OS=latest'

0 comments on commit aaf55c6

Please sign in to comment.