From d563850272b398338f6e8ebbc11255a00c0ad395 Mon Sep 17 00:00:00 2001 From: Arno DUBOIS Date: Tue, 29 Oct 2024 15:50:47 +0000 Subject: [PATCH] ci: improve the configuration for better checking and output Also check building, just in case --- .github/workflows/python-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-check.yml b/.github/workflows/python-check.yml index 47b447e..7a7e131 100644 --- a/.github/workflows/python-check.yml +++ b/.github/workflows/python-check.yml @@ -8,7 +8,7 @@ jobs: build: name: Check if every commit in the PR works runs-on: ubuntu-latest - timeout-minutes: 60 + timeout-minutes: 10 strategy: fail-fast: false matrix: @@ -39,7 +39,7 @@ jobs: for commit in $COMMITS; do git checkout $commit || exit 1 git show --no-patch --format='Testing commit %h %s' - make check || exit 1 + make sync_deps check_ci bundle || exit 1 done - name: Minimize uv cache