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 57543ae commit 2af9541Copy full SHA for 2af9541
.github/workflows/tests.yaml
@@ -88,6 +88,12 @@ jobs:
88
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
89
restore-keys: |
90
${{ runner.os }}-go-
91
+ - name: Install and configure Docker using colima
92
+ # Ref: https://github.com/abiosoft/colima/blob/main/docs/FAQ.md#cannot-connect-to-the-docker-daemon-at-unixvarrundockersock-is-the-docker-daemon-running
93
+ run: |
94
+ brew install docker
95
+ colima start
96
+ echo "DOCKER_HOST=unix://$HOME/.colima/default/docker.sock" >> $GITHUB_ENV
97
- name: Run tests
98
run: make test
99
env:
0 commit comments