chore: wire three-layer geofence transition delivery #5776
Workflow file for this run
This file contains hidden or 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: Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] # code coverage reporting needs to be on main so all PRs can compare against it. | |
| concurrency: # cancel previous workflow run if one exists. | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| uses: customerio/mobile-ci-tools/.github/workflows/ios-test.yml@main | |
| with: | |
| scheme: 'Customer.io-Package' | |
| xcresult-name: 'Customer.io-Package.xcresult' | |
| secrets: | |
| CODECOV_UPLOAD_TOKEN: ${{ secrets.CODECOV_UPLOAD_TOKEN }} | |