diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-02-26 16:57:47 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-02-26 16:57:47 +0100 |
commit | 80c3d042edc16d2f21cd1144a7d7c31abd0d1634 (patch) | |
tree | 5e60fbeab207caec6c59e8e2ffa4afc552c4d99b | |
parent | 639ec044b7075b46fee5c58730f08875876964af (diff) | |
download | rneovim-80c3d042edc16d2f21cd1144a7d7c31abd0d1634.tar.gz rneovim-80c3d042edc16d2f21cd1144a7d7c31abd0d1634.tar.bz2 rneovim-80c3d042edc16d2f21cd1144a7d7c31abd0d1634.zip |
ci: add timeout to all jobs
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94da9ec6f0..06a26dbb27 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,7 @@ jobs: lint: if: (github.event_name == 'pull_request' && github.base_ref == 'master' && !github.event.pull_request.draft) || (github.event_name == 'push' && github.ref == 'refs/heads/master') runs-on: ubuntu-20.04 + timeout-minutes: 10 env: CC: gcc steps: @@ -208,6 +209,7 @@ jobs: windows: runs-on: windows-2019 + timeout-minutes: 45 if: github.event.pull_request.draft == false env: DEPS_BUILD_DIR: ${{ format('{0}/nvim-deps', github.workspace) }} |