Compare commits

...

2 Commits

Author SHA1 Message Date
Damir Mukimov
ce940a8d39
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
2025-12-24 23:17:39 +01:00
Damir Mukimov
40a018b10b
fix: Make go list diagnostic non-failing in vet step
- Add || echo to prevent go list ./pkg/config from failing the step
- This was added as a diagnostic but shouldn't block the workflow
- go vet will still catch actual issues
2025-12-24 23:17:30 +01:00

View File

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