Disable UI tests #1
Workflow file for this run
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
name: Run UI tests | |
on: | |
jobs: | |
ui-test: | |
name: Run UI tests | |
runs-on: macos-latest | |
on: [] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Bundle Install | |
run: | | |
bundle install | |
- name: Test UI | |
run: | | |
bundle exec fastlane test_ui | |
- name: Archive UI test results on failure | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-results | |
path: artifacts/ |