From eb4ee891c4ce8df72a80c707930edde933c78e17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Fri, 2 Apr 2021 17:15:10 +0200 Subject: [PATCH] Reduce tests timeout in GitHub Actions Sometimes a test gets stuck and and we have to wait until it times out in order to check which files were being tested at the time. The default timeout is six hours. I'm reducing it to one hour which should still be plenty of time even on repositories with no knapsack token. --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 560c6ff41..6e3381aff 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,6 +10,7 @@ on: jobs: tests: runs-on: ubuntu-18.04 + timeout-minutes: 60 services: postgres: image: postgres:10.10