Skip to content

Commit

Permalink
Create test_on_develop.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ungchun authored Feb 9, 2024
1 parent 2a55fc6 commit ccda695
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test_on_develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# 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
- develop
pull_request:
branches:
- feature/**

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Start xcode build 🛠
run: |
xcodebuild clean test -project coupleDayProject.xcodeproj \
-scheme coupleDayProject \
-destination 'platform=iOS Simulator,name=iPhone 15,OS=latest'

0 comments on commit ccda695

Please sign in to comment.