This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
Bump rexml from 3.2.6 to 3.2.8 in /Emitron #624
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 tests | |
on: | |
pull_request: | |
branches: [ development ] | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Switch to Xcode 14.2 | |
run: sudo xcode-select -s /Applications/Xcode_14.2.app | |
- name: Update fastlane | |
run: | | |
cd Emitron | |
bundle install | |
bundle exec fastlane -v | |
- name: Generate secrets | |
run: scripts/generate_secrets.sh | |
- name: Execute fastlane | |
env: | |
FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT: 5 | |
FASTLANE_XCODEBUILD_SETTINGS_RETRIES: 5 | |
run: | | |
cd Emitron | |
bundle exec fastlane -v | |
bundle exec fastlane tests |