[MOB-3027] SwiftLint rules #1215
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: Merge Unit Tests | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
execute_merge_tests: | |
runs-on: macos-14 | |
name: Execute Merge Tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Prepare environment | |
uses: ./.github/actions/prepare_environment | |
with: | |
core-token: ${{ secrets.IOS_CORE_TOKEN }} | |
- name: Perform Unit Tests and Publish Test reports | |
id: perform-tests | |
uses: ./.github/actions/perform_unit_tests | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |