Amplify Nightly Repeated Unit Test #268
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: Amplify Nightly Repeated Unit Test | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '30 1 * * *' | ||
permissions: | ||
contents: read | ||
concurrency: | ||
group: ${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
jobs: | ||
unit_tests: | ||
Check failure on line 15 in .github/workflows/nightly_repeated_unittest.yml GitHub Actions / Amplify Nightly Repeated Unit TestInvalid workflow file
|
||
name: ${{ matrix.scheme }} Repeated Unit Tests | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
scheme: [ | ||
Amplify, | ||
AWSPluginsCore, | ||
AWSAPIPlugin, | ||
AWSCloudWatchLoggingPlugin, | ||
AWSCognitoAuthPlugin, | ||
AWSDataStorePlugin, | ||
AWSLocationGeoPlugin, | ||
AWSPredictionsPlugin, | ||
AWSPinpointAnalyticsPlugin, | ||
AWSPinpointPushNotificationsPlugin, | ||
AWSS3StoragePlugin, | ||
CoreMLPredictionsPlugin, | ||
InternalAWSPinpointUnitTests | ||
] | ||
uses: ./.github/workflows/run_xcodebuild_test_platforms.yml | ||
with: | ||
scheme: ${{ matrix.scheme }} | ||
timeout-minutes: 50 | ||
generate_coverage_report: false | ||
retry_on_error: false | ||
other_flags: -test-iterations 100 -run-tests-until-failure |