diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml new file mode 100644 index 0000000..12573ed --- /dev/null +++ b/.github/workflows/run_tests.yml @@ -0,0 +1,15 @@ +name: Tests + +on: + push: + branches-ignore: + - master + +jobs: + 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 iOS Helpers" -destination "platform=iOS Simulator,name=IPhone 11"