Long test for run only on weekend #241
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: Long test for run only on weekend | |
## Every Saturday at 01:10 | |
on: | |
schedule: | |
- cron: '10 1 * * 6' | |
workflow_dispatch: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
hadoop: [ "hdp3.1", "hdi5.1", "emr6.1", "emr6.13" ] | |
uses: ./.github/workflows/test-analysis.yml | |
with: | |
test_profile: runShortTests,runMediumTests,runLongTests | |
hadoop: ${{ matrix.hadoop }} | |
secrets: inherit | |