ci: add go mod tidy step
All checks were successful
CI / ci (push) Successful in 32s

This commit is contained in:
Cosmo
2026-03-01 00:14:23 +00:00
parent b544a8c9a3
commit 8811a9078b

View File

@@ -14,6 +14,9 @@ jobs:
with: with:
go-version: '1.22' go-version: '1.22'
- name: Tidy
run: go mod tidy
- name: Vet - name: Vet
run: go vet ./... run: go vet ./...
@@ -22,4 +25,3 @@ jobs:
- name: Build - name: Build
run: CGO_ENABLED=0 go build -o main ./cmd/api run: CGO_ENABLED=0 go build -o main ./cmd/api
# CI