ci: add module tidy step to CI workflow
Some checks failed
CI / build-and-test (push) Failing after -32m40s

This commit is contained in:
Hein
2026-04-22 15:14:36 +02:00
parent 1c9741373e
commit 8e74dc9284

View File

@@ -31,6 +31,9 @@ jobs:
- name: Download dependencies - name: Download dependencies
run: go mod download run: go mod download
- name: Tidy modules
run: go mod tidy
- name: Run tests - name: Run tests
run: go test ./... run: go test ./...