From 0c70615e43c95b344378113f8252e249ea88bc2b Mon Sep 17 00:00:00 2001 From: Developer Date: Thu, 5 Feb 2026 09:07:04 +0000 Subject: [PATCH] Update CI workflow with timeout --- .gitea/workflows/ci.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c81d5b3..7c606a6 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -2,15 +2,21 @@ name: CI on: push: - branches: [main, master] + branches: + - main + - master pull_request: - branches: [main, master] + branches: + - main + - master jobs: test: runs-on: ubuntu-latest + timeout: 600 steps: - - uses: actions/checkout@v4 + - name: Checkout code + uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5