Bump timeout to 600 seconds, 180 often caused timeout errors (#220) #588
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: On Push/Pull Request | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test-package: | |
| name: Test the Python package | |
| uses: ./.github/workflows/tests.yaml | |
| test-package-gpu: | |
| name: Test the Python package with GPU | |
| if: github.event_name == 'push' | |
| uses: ./.github/workflows/aws-integration-gpu.yaml | |
| secrets: inherit | |
| test-snap: | |
| name: Build and test the Snap | |
| uses: ./.github/workflows/build_and_test_snap.yaml |