From 342b40cbc35f5c20b5d50ea86c9036834c79f383 Mon Sep 17 00:00:00 2001 From: Aleh Zasypkin Date: Sat, 25 Jan 2025 03:07:55 +0200 Subject: [PATCH] fix(ci): introduce GitHub Actions run-time limits: 5m and 20m --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83860d7..15ca894 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,7 @@ jobs: ci: name: API Build (Linux) runs-on: ubuntu-latest + timeout-minutes: 20 strategy: matrix: rust: [ stable ] @@ -68,6 +69,7 @@ jobs: ci-web-scraper: name: Web Scraper Build (Linux) runs-on: ubuntu-latest + timeout-minutes: 5 steps: - uses: actions/checkout@v4 name: Checkout