From 35ed36f730f6776c463f92a806397641c03e26db Mon Sep 17 00:00:00 2001 From: openclaw-bot Date: Sun, 12 Jul 2026 03:54:41 +0000 Subject: [PATCH 1/4] fix(ci): remove failure masking from ci.yml - Remove || true that masks test failures - Ensure CI properly gates on test results Found by production CI audit. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9bb2d9b..71133c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,4 +16,4 @@ jobs: with: python-version: ${{ matrix.python-version }} - run: pip install pytest - - run: pytest || true + - run: pytest From 4b009d5a178d06ef9c5b08655bf5f76a2d5dbce3 Mon Sep 17 00:00:00 2001 From: SuperInstance Date: Fri, 21 Aug 2026 09:14:38 -0800 Subject: [PATCH 2/4] fix(ci): install package before running tests (unmask exposed missing install) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71133c9..5690b00 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,5 +15,5 @@ jobs: - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - - run: pip install pytest + - run: pip install -e . pytest - run: pytest From 37ade259878be8f8af8a9f6c7936b49a28174eb4 Mon Sep 17 00:00:00 2001 From: SuperInstance Date: Fri, 21 Aug 2026 09:33:06 -0800 Subject: [PATCH 3/4] ci: retrigger checks (previous push webhook dropped) From 95cadac0879395e3fa79caa4491a993d72f46ce8 Mon Sep 17 00:00:00 2001 From: SuperInstance Date: Fri, 21 Aug 2026 09:39:48 -0800 Subject: [PATCH 4/4] ci: retrigger solo