add timeout for make

This commit is contained in:
Michael Davidsaver
2021-03-18 11:06:52 -07:00
parent 3db08b5977
commit 9a94f4712b
3 changed files with 46 additions and 9 deletions

View File

@@ -46,7 +46,7 @@ jobs:
- name: Build main module (example app)
run: python cue.py build
- name: Run main module tests
run: python cue.py test
run: python cue.py -T 15M test
- name: Collect and show test results
run: python cue.py test-results
@@ -77,7 +77,7 @@ jobs:
- name: Build main module (example app)
run: python cue.py build
- name: Run main module tests
run: python cue.py test
run: python cue.py -T 15M test
- name: Collect and show test results
run: python cue.py test-results
@@ -100,7 +100,7 @@ jobs:
- name: Build main module (example app)
run: python cue.py build
- name: Run main module tests
run: python cue.py test
run: python cue.py -T 15M test
- name: Collect and show test results
run: python cue.py test-results
@@ -128,7 +128,7 @@ jobs:
- name: Build main module (example app)
run: python cue.py build
- name: Run main module tests
run: python cue.py test
run: python cue.py -T 15M test
- name: Collect and show test results
run: python cue.py test-results
@@ -154,7 +154,7 @@ jobs:
- name: Build main module (example app)
run: python cue.py build
- name: Run main module tests
run: python cue.py test
run: python cue.py -T 15M test
- name: Collect and show test results
run: python cue.py test-results
@@ -180,6 +180,6 @@ jobs:
- name: Build main module (example app)
run: python cue.py build
- name: Run main module tests
run: python cue.py test
run: python cue.py -T 15M test
- name: Collect and show test results
run: python cue.py test-results