Skip to content

Commit

Permalink
Add regression tests flow
Browse files Browse the repository at this point in the history
  • Loading branch information
okhan-okbay-cko committed Aug 25, 2023
1 parent ee6aa9a commit d30f4a0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/run-regression-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Check PR

on: workflow_dispatch

env:
destination: "platform=iOS Simulator,name=iPhone 14 Pro,OS=latest"
configuration: "Debug"

jobs:
run-regression-tests:
name: Run Regression Tests
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Run Regression Tests
run: |
set -o pipefail && xcodebuild "test" "-project" "Checkout/Samples/SPMSample/CheckoutSPMSample.xcodeproj" "-scheme" "Regression Tests" "-configuration" "${configuration}" "-destination" "${destination}" | xcpretty

0 comments on commit d30f4a0

Please sign in to comment.