From cb416cb35989f1c2d152ea8bc2322adbe643db0d Mon Sep 17 00:00:00 2001 From: Alec Thomas Date: Mon, 16 Sep 2024 14:14:13 +1000 Subject: [PATCH] chore(ci): run full Go tests in PR not -short tests (#2690) --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e49f6a3f..882f441c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,8 @@ jobs: run: docker compose up -d --wait - name: Test run: | - go-test-annotate ${{ (github.event_name == 'pull_request' && github.event.action != 'enqueued' && !contains( github.event.pull_request.labels.*.name, 'run-all')) && '-short' || '' }} + go-test-annotate + # go-test-annotate ${{ (github.event_name == 'pull_request' && github.event.action != 'enqueued' && !contains( github.event.pull_request.labels.*.name, 'run-all')) && '-short' || '' }} test-readme: name: Test README runs-on: ubuntu-latest