Skip to content

Commit f34986c

Browse files
committed
wip: try specifying docker builds for windows and mac
1 parent 576bae0 commit f34986c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/build-and-test.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,19 @@ jobs:
2323
go-version: "1.25.3"
2424
- run: go install go.uber.org/mock/mockgen@latest
2525

26+
# Set up Docker on macOS
27+
- name: Set up Docker (macOS)
28+
if: runner.os == 'macOS'
29+
uses: docker-practice/actions-setup-docker@master
30+
timeout-minutes: 12
31+
32+
# Set up Docker on Windows
33+
- name: Set up Docker (Windows)
34+
if: runner.os == 'Windows'
35+
shell: pwsh
36+
run: |
37+
Start-Service docker
38+
2639
- name: Download dependencies
2740
run: go mod download
2841

0 commit comments

Comments
 (0)