ci: seed the SwiftPM dependencies cache and raise job timeouts #922
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: Integration Tests | API - All | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| permissions: | |
| id-token: write | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: ${{ github.ref_name != 'main'}} | |
| jobs: | |
| functional-test: | |
| name: Functional Tests | |
| uses: ./.github/workflows/integ_test_api_functional.yml | |
| secrets: inherit | |
| graphql-user-pool-test: | |
| name: GraphQL | User Pool Tests | |
| uses: ./.github/workflows/integ_test_api_graphql_user_pool.yml | |
| secrets: inherit | |
| graphql-auth-directive-test: | |
| name: GraphQL | Auth Directive Tests | |
| uses: ./.github/workflows/integ_test_api_graphql_auth_directive.yml | |
| secrets: inherit | |
| graphql-iam-test: | |
| name: GraphQL | IAM Tests | |
| uses: ./.github/workflows/integ_test_api_graphql_iam.yml | |
| secrets: inherit | |
| graphql-lambda-auth-test: | |
| name: GraphQL | Lambda Tests | |
| uses: ./.github/workflows/integ_test_api_graphql_lambda_auth.yml | |
| secrets: inherit | |
| graphql-lazy-load-test: | |
| if: ${{ false }} | |
| name: GraphQL | Lazy Load Tests | |
| uses: ./.github/workflows/integ_test_api_graphql_lazy_load.yml | |
| secrets: inherit | |
| rest-user-pool-test: | |
| name: REST | User Pool Tests | |
| uses: ./.github/workflows/integ_test_api_rest_user_pool.yml | |
| secrets: inherit | |
| rest-iam-test: | |
| name: REST | IAM Tests | |
| uses: ./.github/workflows/integ_test_api_rest_iam.yml | |
| secrets: inherit |