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
This commit is contained in:
Damir Mukimov 2025-12-24 23:17:30 +01:00
parent 0dac4072fc
commit 40a018b10b
No known key found for this signature in database
GPG Key ID: 42996CC7C73BC750

View File

@ -83,7 +83,7 @@ jobs:
go mod tidy go mod tidy
go mod verify go mod verify
go list -m go list -m
go list ./pkg/config 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