-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create workflow for new github action
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |