mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
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:
parent
0dac4072fc
commit
40a018b10b
@ -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
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user