Added warning for the purchase in analytics mode. #611
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: Checks | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
lint: | |
runs-on: macos-latest | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.3.0' | |
- uses: actions/checkout@v2 | |
- name: Validation | |
run: | | |
pod lib lint | |
spm: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: SPM validation | |
run: | | |
swift build | |
tests: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Tests | |
run: | | |
fastlane tests |