From a6b3cb615c09ded70b39f7e163d2103efaad9339 Mon Sep 17 00:00:00 2001 From: Travis Ralston <travpc@gmail.com> Date: Thu, 10 Aug 2023 20:27:32 -0600 Subject: [PATCH] Be sure to compile assets too --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a1b2d732..54a6333e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,5 +19,9 @@ jobs: - uses: actions/setup-go@v2 with: go-version: '1.20' + - run: "go install -v ./cmd/compile_assets" + env: + GOBIN: "$PWD/bin" + - run: "$PWD/bin/compile_assets" - run: "go test -c -v ./test && ./test.test '-test.v'" # cheat and work around working directory issues timeout-minutes: 30 -- GitLab