Release 1.10.0, build 98 #572
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
# Checks if the project can be built and runs tests | |
name: Test | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "**/*.swift" | |
- "**/*.xcodeproj/**" | |
- "**/*.xcassets/**" | |
- "**/*.lproj" | |
- "**/*.entitlements" | |
- "**/*.plist" | |
pull_request: | |
branches: [main] | |
paths: | |
- "**/*.swift" | |
- "**/*.xcodeproj/**" | |
- "**/*.xcassets/**" | |
- "**/*.lproj" | |
- "**/*.entitlements" | |
- "**/*.plist" | |
workflow_dispatch: | |
concurrency: | |
group: movapp-apple-build-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
runs-on: macos-12 | |
env: | |
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | |
MATCH_GIT_PRIVATE_KEY: ${{ secrets.MATCH_GIT_PRIVATE_KEY }} | |
APP_STORE_API_KEY: ${{ secrets.APP_STORE_API_KEY }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: bundle install | |
- name: Build | |
run: bundle exec fastlane build | |
- name: Tests | |
run: bundle exec fastlane tests |