From d263a30f84678a49455928b66f88caef1777fae1 Mon Sep 17 00:00:00 2001 From: Molecule AI SDK-Dev Date: Tue, 21 Apr 2026 10:34:04 +0000 Subject: [PATCH] fix(ci): narrow test/vet job to ./cmd/molecule/... package MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The repo has no Go files at the root — go test ./... and go vet ./... fail with "no Go files in ." in CI. Narrow the test job to the only package with tests, and vet to the scoped package dirs. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94ef8a8..2082dc8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,9 +21,9 @@ jobs: - name: Tidy run: go mod tidy && git diff --exit-code go.sum - name: Vet - run: go vet ./... + run: go vet ./cmd/molecule/... ./internal/client/... ./internal/cmd/... - name: Test - run: go test ./... + run: go test ./cmd/molecule/... release: runs-on: ubuntu-latest