We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3eef4b1 commit 74ccbaaCopy full SHA for 74ccbaa
.github/workflows/pr.yml
@@ -16,6 +16,8 @@ jobs:
16
uses: actions/setup-go@v5
17
with:
18
go-version: '>=1.21.0'
19
+ - name: Set up Docker Buildx
20
+ uses: docker/setup-buildx-action@v3
21
- name: Go Format
22
run: make fmt && git diff --exit-code
23
- name: Go Vet
@@ -26,12 +28,9 @@ jobs:
26
28
run: go mod download
27
29
- name: Go Mod Verify
30
run: go mod verify
- - name: Go Build
- run: make build
31
+ - name: Go Test
32
run: make test
33
-
34
35
36
37
+ - name: Build Docker
+ uses: docker/build-push-action@v5
+ with:
+ push: false
0 commit comments