mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00

* Update homebrew dependencies like on the other workflows. Fixes problems caused by buggy swiftformat prebundled on the github actions macos runner * Removed UI tests from PR tests and running them on a schedule instead. Hopefuly fixed code coverage. * Added back simulator versions as they need to match UI test snapshots * Allow UI tests to run on this PR * Added back skipped UI tests * Fix danger sometimes not working on forks and disable integration tests on them
71 lines
979 B
Markdown
71 lines
979 B
Markdown
fastlane documentation
|
|
----
|
|
|
|
# Installation
|
|
|
|
Make sure you have the latest version of the Xcode command line tools installed:
|
|
|
|
```sh
|
|
xcode-select --install
|
|
```
|
|
|
|
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
|
|
|
|
# Available Actions
|
|
|
|
### alpha
|
|
|
|
```sh
|
|
[bundle exec] fastlane alpha
|
|
```
|
|
|
|
|
|
|
|
### release
|
|
|
|
```sh
|
|
[bundle exec] fastlane release
|
|
```
|
|
|
|
|
|
|
|
### adhoc
|
|
|
|
```sh
|
|
[bundle exec] fastlane adhoc
|
|
```
|
|
|
|
|
|
|
|
### unit_tests
|
|
|
|
```sh
|
|
[bundle exec] fastlane unit_tests
|
|
```
|
|
|
|
|
|
|
|
### ui_tests
|
|
|
|
```sh
|
|
[bundle exec] fastlane ui_tests
|
|
```
|
|
|
|
|
|
|
|
### integration_tests
|
|
|
|
```sh
|
|
[bundle exec] fastlane integration_tests
|
|
```
|
|
|
|
|
|
|
|
----
|
|
|
|
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
|
|
|
|
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
|
|
|
|
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
|