Skip to content

Commit 855a238

Browse files
committed
Build docker on prs
1 parent 3eef4b1 commit 855a238

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/pr.yml

+7-8
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
uses: actions/setup-go@v5
1717
with:
1818
go-version: '>=1.21.0'
19+
- name: Set up Docker Buildx
20+
uses: docker/setup-buildx-action@v5
1921
- name: Go Format
2022
run: make fmt && git diff --exit-code
2123
- name: Go Vet
@@ -26,12 +28,9 @@ jobs:
2628
run: go mod download
2729
- name: Go Mod Verify
2830
run: go mod verify
29-
- name: Go Build
30-
run: make build
31-
- name: Go Build
31+
- name: Go Test
3232
run: make test
33-
34-
35-
36-
37-
33+
- name: Build Docker
34+
uses: docker/build-push-action@v5
35+
with:
36+
push: false

0 commit comments

Comments
 (0)