Amplify Nightly Repeated Unit Test #333
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: | ||
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_unit_tests_platforms.yml | ||
with: | ||
scheme: ${{ matrix.scheme }} | ||
timeout-minutes: 50 | ||
generate_coverage_report: false | ||
retry_on_error: false | ||
Check failure on line 40 in .github/workflows/nightly_repeated_unittest.yml GitHub Actions / Amplify Nightly Repeated Unit TestInvalid workflow file
|
||
other_flags: -test-iterations 100 -run-tests-until-failure |