Skip to content

Commit

Permalink
fix: update release workflow (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya authored Mar 10, 2023
1 parent 5ab583f commit 35abbc8
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,19 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Verify project
run: make verify
- name: go-mod verify
run: go mod verify

- name: go-mod tidy
run: go mod tidy

- name: go-build
env:
GOOS: linux
run: go build

- name: go-test
run: go test -v ./...

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down

0 comments on commit 35abbc8

Please sign in to comment.