Skip to content

Commit 2c6e8b6

Browse files
committed
gha: test docker master
Signed-off-by: Paweł Gronowski <[email protected]>
1 parent 95fab04 commit 2c6e8b6

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/master.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: test
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
pull_request:
7+
8+
jobs:
9+
amd64:
10+
runs-on: ubuntu-latest
11+
steps:
12+
-
13+
name: Set up Docker
14+
uses: vvoland/ghaction-setup-docker@master
15+
with:
16+
version: master
17+
daemon-config: |
18+
{
19+
"debug": true,
20+
"features": {
21+
"containerd-snapshotter": true
22+
}
23+
}
24+
arm64:
25+
runs-on: ubuntu22_arm64
26+
steps:
27+
-
28+
name: Set up Docker
29+
uses: vvoland/ghaction-setup-docker@master
30+
with:
31+
version: master
32+
daemon-config: |
33+
{
34+
"debug": true,
35+
"features": {
36+
"containerd-snapshotter": true
37+
}
38+
}
39+

0 commit comments

Comments
 (0)