diff options
author | Michael Manfre | 2022-12-18 00:26:15 -0500 |
---|---|---|
committer | GitHub | 2022-12-17 22:26:15 -0700 |
commit | 86bc48f3e0b57bd63673324c1177e93da806de7a (patch) | |
tree | 158dab7dd0314ef04475a70b8ecb0174399f4a9d | |
parent | bb81f0e559692976d7c42ad0d36eb3b7d9992931 (diff) | |
download | takahe-master.tar.gz takahe-master.tar.bz2 takahe-master.zip |
Add github action timeouts (#195)master
-rw-r--r-- | .github/workflows/test-docs.yml | 1 | ||||
-rw-r--r-- | .github/workflows/test.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/test-docs.yml b/.github/workflows/test-docs.yml index 070ce7a..8560c8c 100644 --- a/.github/workflows/test-docs.yml +++ b/.github/workflows/test-docs.yml @@ -5,6 +5,7 @@ on: [push, pull_request] jobs: test_docs: runs-on: ubuntu-latest + timeout-minutes: 5 strategy: matrix: python-version: ["3.10"] diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 19e6e41..e1c5de2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,6 +12,7 @@ jobs: test: name: test py${{ matrix.python-version }} with ${{ matrix.db_name }} runs-on: ubuntu-latest + timeout-minutes: 8 strategy: matrix: python-version: ["3.10", "3.11"] |