fix: Add go build before vet to ensure module is recognized
Some checks failed
CI/CD Pipeline / frontend-lint (push) Failing after 29s
CI/CD Pipeline / backend-lint (push) Failing after 33s
CI/CD Pipeline / e2e-test (push) Has been skipped
CI/CD Pipeline / frontend-build (push) Has been skipped
CI/CD Pipeline / backend-build (push) Has been skipped

- Run go build before go vet to ensure Go recognizes the module structure
- This should fix the 'package not in std' error by initializing the module properly
This commit is contained in:
Damir Mukimov 2025-12-24 23:09:53 +01:00
parent 9803386384
commit 03eb4f08a6
No known key found for this signature in database
GPG Key ID: 42996CC7C73BC750

View File

@ -77,6 +77,8 @@ jobs:
working-directory: bugulma/backend
run: |
go mod tidy
go mod verify
go build ./... || true
go vet ./...
- name: Test
working-directory: bugulma/backend