Update Go build command in CI workflows
Some checks failed
Go CI/CD / go-ci (push) Has been cancelled
Some checks failed
Go CI/CD / go-ci (push) Has been cancelled
Replaced `go build -o ./bin/app main.go` with `go build ./...` across all CI workflow files. This ensures all packages in the module are built, improving compatibility and consistency in the build process.
This commit is contained in:
parent
9e730f3a5d
commit
430e0431b2
@ -45,4 +45,4 @@ jobs:
|
|||||||
- name: Build binary
|
- name: Build binary
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
go build -o ./bin/app main.go
|
go build ./...
|
@ -45,4 +45,4 @@ jobs:
|
|||||||
- name: Build binary
|
- name: Build binary
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
go build -o ./bin/app main.go
|
go build ./...
|
@ -38,4 +38,4 @@ jobs:
|
|||||||
- name: Build binary
|
- name: Build binary
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
go build -o ./bin/app main.go
|
go build ./...
|
Loading…
x
Reference in New Issue
Block a user