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