Skip to content

Commit

Permalink
Create workflow for new github action
Browse files Browse the repository at this point in the history
  • Loading branch information
tonidero committed Jun 13, 2024
1 parent 386ef58 commit 803d0b7
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test-ios-14.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 803d0b7

Please sign in to comment.