Update Go build command in CI workflows
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:
Rene Nochebuena 2025-04-09 02:43:45 -06:00
parent 9e730f3a5d
commit 430e0431b2
Signed by: Rene Nochebuena
GPG Key ID: A9FD83117EA538D8
3 changed files with 3 additions and 3 deletions

View File

@ -45,4 +45,4 @@ jobs:
- name: Build binary
shell: bash
run: |
go build -o ./bin/app main.go
go build ./...

View File

@ -45,4 +45,4 @@ jobs:
- name: Build binary
shell: bash
run: |
go build -o ./bin/app main.go
go build ./...

View File

@ -38,4 +38,4 @@ jobs:
- name: Build binary
shell: bash
run: |
go build -o ./bin/app main.go
go build ./...