fix: Remove diagnostic go list commands that are causing failures
Some checks failed
CI/CD Pipeline / backend-lint (push) Failing after 32s
CI/CD Pipeline / backend-build (push) Has been skipped
CI/CD Pipeline / frontend-lint (push) Failing after 2m11s
CI/CD Pipeline / frontend-build (push) Has been skipped
CI/CD Pipeline / e2e-test (push) Has been skipped

- Remove go list -m and go list ./pkg/config diagnostic commands
- These were added for debugging but are causing CI failures
- go vet will catch the actual issues we need to fix
This commit is contained in:
Damir Mukimov 2025-12-24 23:17:39 +01:00
parent 40a018b10b
commit ce940a8d39
No known key found for this signature in database
GPG Key ID: 42996CC7C73BC750

View File

@ -82,8 +82,6 @@ jobs:
run: | run: |
go mod tidy go mod tidy
go mod verify go mod verify
go list -m
go list ./pkg/config || echo "Warning: pkg/config not found, but continuing..."
go vet ./... go vet ./...
- name: Test - name: Test
working-directory: bugulma/backend working-directory: bugulma/backend