-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (30 loc) · 830 Bytes
/
pullrequests.yml
File metadata and controls
33 lines (30 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: "Build & Test"
env:
PLATFORMS: "linux/amd64,linux/arm64" # Build for which platforms
on:
pull_request:
types: [assigned, opened, synchronize, reopened]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
- name: Hadolint
uses: brpaz/hadolint-action@v1.5.0
with:
dockerfile: Dockerfile
- name: Set up QEMU
uses: docker/setup-qemu-action@v3.7.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.12.0
- name: Build and push
id: docker_build
uses: docker/build-push-action@v6.19.2
env:
BUILDKIT_PROGRESS: plain
with:
context: .
file: ./Dockerfile
platforms: ${{ env.PLATFORMS }}
push: false