ci: add timeouts (#4912)

## Description

Add Timeouts to Github action jobs. The goal of adding timeouts is so if a job is hanging on something it gets killed and the author will get notified. 

I picked these times based on previous circle and Github action times then doubled & in some places tripled the times. 

Closes: #XXX
This commit is contained in:
Marko
2020-05-28 13:09:59 +00:00
committed by GitHub
parent aded0b0138
commit a27317dff0
4 changed files with 8 additions and 0 deletions
+2
View File
@@ -8,12 +8,14 @@ on:
jobs:
proto-lint:
runs-on: ubuntu-latest
timeout-minutes: 4
steps:
- uses: actions/checkout@master
- name: lint
run: make proto-lint
proto-breakage:
runs-on: ubuntu-latest
timeout-minutes: 4
steps:
- uses: actions/checkout@master
- name: check-breakage