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