Skip to content

Commit

Permalink
PIA-1265: tvOS unit tests ci setup
Browse files Browse the repository at this point in the history
  • Loading branch information
kp-geneva-parayno committed Feb 8, 2024
1 parent 0a2d002 commit a8c4f4e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,13 @@ jobs:
- name: Install Fastlane
run: gem install fastlane

- name: Run unit tests
- name: Run tvOS unit tests
run: bundle exec fastlane tvOStests

- name: Run iOS unit tests
run: bundle exec fastlane tests

- name: Run e2e tests
- name: Run iOS e2e tests
run: bundle exec fastlane e2e_tests
timeout-minutes: 45

Expand Down
7 changes: 7 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
default_platform(:ios)
import("./Certificates")


platform :tvOS do
lane :tvOStests do
run_tests(scheme: "PIA VPN-tvOS")
end
end

platform :ios do
key_id = ENV['APP_STORE_CONNECT_KEY_ID']
issuer_id = ENV['APP_STORE_CONNECT_ISSUER_ID']
Expand Down

0 comments on commit a8c4f4e

Please sign in to comment.