aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-14 10:08:08 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-14 10:08:08 -0800
commit90fa99359fafea4b0e10a88716675de9de4593ed (patch)
tree55817a1859ea883d2e410a5964009b5bff9e7acf /.github/workflows
parent03b6cac13e249c8b7cf461bff2d2e40980fbd54d (diff)
downloadneko-90fa99359fafea4b0e10a88716675de9de4593ed.tar.gz
neko-90fa99359fafea4b0e10a88716675de9de4593ed.tar.bz2
neko-90fa99359fafea4b0e10a88716675de9de4593ed.zip
fix: restore CI backend job by creating dummy assets for embed and updating linter (fixing NK-nx8dhw)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml9
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0a87c1a..5be2bc8 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -18,13 +18,20 @@ jobs:
with:
go-version: '1.24'
+ - name: Create dummy assets for embed
+ run: |
+ mkdir -p web/dist/v2
+ touch web/dist/v2/dummy
+ mkdir -p web/dist/vanilla
+ touch web/dist/vanilla/dummy
+
- name: Vet
run: go vet ./...
- name: Lint
uses: golangci/golangci-lint-action@v4
with:
- version: v1.54
+ version: v1.63
- name: Test
run: go test -v ./...