aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
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 ./...