Skip to content

Commit

Permalink
chore: fix build action
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Andres Virviescas Santana committed Jan 31, 2022
1 parent eb11e43 commit 6895518
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
go-version: ${{ matrix.go-version }}
- run: go version
- run: go get -t -v ./...
- run: GOOS=linux go build
- run: GOOS=darwin go build
- run: GOOS=freebsd go build
- run: GOOS=windows go build
- run: GOARCH=386 go build
- run: GOOS=linux go build ./...
- run: GOOS=darwin go build ./...
- run: GOOS=freebsd go build ./...
- run: GOOS=windows go build ./...
- run: GOARCH=386 go build ./...

0 comments on commit 6895518

Please sign in to comment.