Setup ruby in workflow #3
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: build-and-test-ios-app | |
on: | |
push: | |
branches-ignore: | |
- main | |
- develop | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
build: | |
permissions: | |
contents: read | |
runs-on: [self-hosted, macOS] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.3.4' # Not needed with a `.ruby-version` or `.tool-versions` | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Update Bundler | |
run: bundle update | |
- name: Check static code quality of iOS App | |
run: bundle exec fastlane swift_lint | |
- name: Run Unit and UI Tests | |
run: bundle exec fastlane test | |
- name: Build iOS App | |
run: bundle exec fastlane build | |
env: | |
BUILD_NUMBER: ${{ github.run_number }} | |
IOS_MATCH_GITLAB_AUTH: ${{ secrets.IOS_MATCH_GITLAB_AUTH }} | |
IOS_KEYCHAIN_PASSWORD: ${{ secrets.IOS_KEYCHAIN_PASSWORD }} | |
IOS_APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.IOS_APP_STORE_CONNECT_API_KEY_KEY_ID }} | |
IOS_APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.IOS_APP_STORE_CONNECT_API_KEY_ISSUER_ID }} | |
IOS_APP_STORE_CONNECT_API_KEY_PASSWORD: ${{ secrets.IOS_APP_STORE_CONNECT_API_KEY_PASSWORD }} | |
MATCH_PASSWORD: ${{ secrets.IOS_MATCH_PASSWORD }} |