From 803d0b7fda1b8cc373b1438ed916fa739f9531a0 Mon Sep 17 00:00:00 2001 From: Toni Rico Date: Thu, 13 Jun 2024 14:56:02 +0200 Subject: [PATCH] Create workflow for new github action --- .github/workflows/test-ios-14.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/test-ios-14.yml diff --git a/.github/workflows/test-ios-14.yml b/.github/workflows/test-ios-14.yml new file mode 100644 index 0000000000..bce4a491f7 --- /dev/null +++ b/.github/workflows/test-ios-14.yml @@ -0,0 +1,28 @@ +name: Test iOS 14 (WIP) + +on: + push: + branches: + - '**' + +jobs: + test: + name: Testing Swift Package and iOS app + runs-on: macos-13 + steps: + - name: Checkout repository + uses: actions/checkout@v2 + # TODO: Install Ruby version + - name: Install Bundler + run: gem install bundler + + - name: Install dependencies + run: bundle install + + - name: Install runtime + run: sudo xcodes runtimes install "iOS 14.5" + + - name: Run tests + env: + SCAN_DEVICE: iPhone 12 (14.5) + run: bundle exec fastlane test_ios skip_sk_tests:true \ No newline at end of file