Skip to content

Commit

Permalink
chore: Add -v flag to go build
Browse files Browse the repository at this point in the history
  • Loading branch information
KapJI authored and twpayne committed Nov 8, 2024
1 parent 3bbc077 commit 92f8a98
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
go-version: ${{ env.GO_VERSION }}
- name: build
run: |
go build ./...
go build -v ./...
- name: run
run: |
go run . --version
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
go-version: oldstable
- name: build
run: |
go build ./...
go build -v ./...
- name: run
run: |
go run . --version
Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:
sudo install -m 755 rage/rage-keygen /usr/local/bin
- name: build
run: |
go build ./...
go build -v ./...
- name: run
run: |
go run . --version
Expand Down Expand Up @@ -367,7 +367,7 @@ jobs:
go-version: ${{ env.GO_VERSION }}
- name: build
run: |
go build ./...
go build -v ./...
- name: run
run: |
go run . --version
Expand Down

0 comments on commit 92f8a98

Please sign in to comment.