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.
This commit is contained in:
Javi Martín
2021-04-02 17:15:10 +02:00
parent 8d38ed58c8
commit eb4ee891c4

View File

@@ -10,6 +10,7 @@ on:
jobs: jobs:
tests: tests:
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
timeout-minutes: 60
services: services:
postgres: postgres:
image: postgres:10.10 image: postgres:10.10