From 204e5ec6d5748369ed523a18fafa5e89d0b6cf6b Mon Sep 17 00:00:00 2001 From: "Randall C. O'Reilly" Date: Wed, 25 Dec 2024 09:18:43 -0800 Subject: [PATCH] build docs --- .github/workflows/go.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4140a845ba..515c5d4736 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -28,9 +28,15 @@ jobs: run: go build -v ./... # we can't test gpu, xyz, and system on the CI since there is no Vulkan support - - name: Test - run: go test -v $(go list ./... | grep -v gpu | grep -v xyz | grep -v system) -coverprofile cover.out -timeout 30s +# - name: Test +# run: go test -v $(go list ./... | grep -v gpu | grep -v xyz | grep -v system) -coverprofile cover.out -timeout 30s + - name: Install Core + run: go install ./cmd/core + + - name: Build Docs + run: core build web -dir docs -o static -vanity-url cogentcore.org/core -github-vanity-repository cogentcore/core + - name: Update coverage report uses: ncruces/go-coverage-report@v0 with: