Skip to content

Commit

Permalink
Update build and test commands in GitHub workflow
Browse files Browse the repository at this point in the history
The build and test commands in the go.yml GitHub workflow file have been updated. The `go get github.com/Hubmakerlabs/replicatr/pkg/bech32` command has been added before the build and test commands to ensure the required package is fetched before these operations.
  • Loading branch information
mleku committed Jan 11, 2024
1 parent 51cf94d commit ed1776d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
go-version: '1.20'

- name: Build
run: go build ./...
run: go get github.com/Hubmakerlabs/replicatr/pkg/bech32; go build ./...

- name: Test
run: go test ./...
run: go get github.com/Hubmakerlabs/replicatr/pkg/bech32; go test ./...

0 comments on commit ed1776d

Please sign in to comment.