From b70b47b07c3f74ef02a7d978a70812252d4c24c9 Mon Sep 17 00:00:00 2001 From: Alexander Kulyk <37739683+AlexanderKulyk@users.noreply.github.com> Date: Thu, 31 Mar 2022 20:39:49 +0300 Subject: [PATCH 1/2] Create run_tests.yml --- .github/workflows/run_tests.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/run_tests.yml diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml new file mode 100644 index 0000000..80a78d9 --- /dev/null +++ b/.github/workflows/run_tests.yml @@ -0,0 +1,15 @@ +name: Run tests + +on: + push: + branches-ignore: + - master + +jobs: + build: + runs-on: macos-latest + steps: + - name: Prepare branch on runner + uses: actions/checkout@v3 + - name: Build & Test + run: xcodebuild build clean test -scheme "Uptech Helpers" -destination "platform=iOS Simulator,name=IPhone 11" From 39487678817fc82849b5af2df992faeb0f431879 Mon Sep 17 00:00:00 2001 From: Alexander Kulyk Date: Thu, 31 Mar 2022 22:55:39 +0300 Subject: [PATCH 2/2] Update run_tests.yml --- .github/workflows/run_tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 80a78d9..12573ed 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -1,4 +1,4 @@ -name: Run tests +name: Tests on: push: @@ -6,10 +6,10 @@ on: - master jobs: - build: + run_tests: runs-on: macos-latest steps: - name: Prepare branch on runner uses: actions/checkout@v3 - name: Build & Test - run: xcodebuild build clean test -scheme "Uptech Helpers" -destination "platform=iOS Simulator,name=IPhone 11" + run: xcodebuild build clean test -scheme "Uptech iOS Helpers" -destination "platform=iOS Simulator,name=IPhone 11"