Mainline Integration Tests #1008
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: Mainline Integration Tests | ||
| on: | ||
| schedule: | ||
| - cron: '0 */4 * * *' | ||
| push: | ||
| branches: | ||
| - mainline | ||
| workflow_dispatch: | ||
| jobs: | ||
| MainlineLinuxIntegrationTest: | ||
| name: Linux Integration Test | ||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
| uses: aws-deadline/.github/.github/workflows/reusable_integration_test.yml@mainline | ||
|
Check warning on line 17 in .github/workflows/mainline_integration_test.yml
|
||
| secrets: inherit | ||
| with: | ||
| repository: ${{ github.event.repository.name }} | ||
| branch: mainline | ||
| environment: mainline | ||
| os: linux | ||
| MainlineWindowsIntegrationTest: | ||
| name: Windows Integration Test | ||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
| uses: aws-deadline/.github/.github/workflows/reusable_integration_test.yml@mainline | ||
|
Check warning on line 29 in .github/workflows/mainline_integration_test.yml
|
||
| secrets: inherit | ||
| with: | ||
| repository: ${{ github.event.repository.name }} | ||
| branch: mainline | ||
| environment: mainline | ||
| os: windows | ||