Skip to content

Commit b8c498f

Browse files
author
Kevin Buchholz
committed
add test workflow
see #59
1 parent 7db9243 commit b8c498f

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/testImageBuild.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build test image
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
docker:
7+
runs-on: ubuntu-latest
8+
steps:
9+
-
10+
name: Checkout
11+
uses: actions/checkout@v2
12+
-
13+
name: Set up QEMU
14+
uses: docker/setup-qemu-action@v1
15+
-
16+
name: Set up Docker Buildx
17+
uses: docker/setup-buildx-action@v1
18+
-
19+
name: Build and push
20+
uses: docker/build-push-action@v2
21+
with:
22+
context: .
23+
platforms: linux/amd64,linux/arm64
24+
push: false
25+
tags: |
26+
sourceboat/docker-laravel:test
27+
ghcr.io/sourceboat/docker-laravel:test

0 commit comments

Comments
 (0)