mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
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
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:
parent
9803386384
commit
03eb4f08a6
@ -77,6 +77,8 @@ jobs:
|
|||||||
working-directory: bugulma/backend
|
working-directory: bugulma/backend
|
||||||
run: |
|
run: |
|
||||||
go mod tidy
|
go mod tidy
|
||||||
|
go mod verify
|
||||||
|
go build ./... || true
|
||||||
go vet ./...
|
go vet ./...
|
||||||
- name: Test
|
- name: Test
|
||||||
working-directory: bugulma/backend
|
working-directory: bugulma/backend
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user