We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f8fad4 commit 4e12b9aCopy full SHA for 4e12b9a
1 file changed
dev.yml
@@ -0,0 +1,21 @@
1
+name: gh-ost
2
+
3
+env:
4
+ TESTCONTAINERS_DOCKER_SOCKET_OVERRIDE: /var/run/docker.sock
5
+ TESTCONTAINERS_RYUK_DISABLED: "true"
6
7
+up:
8
+ - go:
9
+ version: "1.22.12"
10
+ - podman
11
+ - custom:
12
+ name: Go Dependencies
13
+ met?: go mod download
14
+ meet: echo 'go mod failed to download dependencies'; false
15
16
+commands:
17
+ test:
18
+ desc: Run all the tests.
19
+ run: |
20
+ export DOCKER_HOST=unix://$(podman machine inspect --format '{{.ConnectionInfo.PodmanSocket.Path}}')
21
+ script/test
0 commit comments