From ccda695a7170234d4e4669528a25f12a1e252099 Mon Sep 17 00:00:00 2001 From: sunghun Date: Fri, 9 Feb 2024 18:25:10 +0900 Subject: [PATCH] Create test_on_develop.yml --- .github/workflows/test_on_develop.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/test_on_develop.yml diff --git a/.github/workflows/test_on_develop.yml b/.github/workflows/test_on_develop.yml new file mode 100644 index 0000000..e527e46 --- /dev/null +++ b/.github/workflows/test_on_develop.yml @@ -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'