-
-
Notifications
You must be signed in to change notification settings - Fork 12
39 lines (34 loc) · 832 Bytes
/
test.yml
File metadata and controls
39 lines (34 loc) · 832 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
34
35
36
37
38
39
name: Build
on: [pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
image:
- circe-stable
- circe-unstable
- horus-stable
- horus-unstable
- odin-stable
- odin-unstable
- juno-stable
- juno-unstable
- loki-stable
- loki-unstable
- next-unstable
- stable
- unstable
- latest
name: ${{ matrix.image }}
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v6
- name: Lint Image
uses: hadolint/hadolint-action@v3.3.0
with:
dockerfile: ${{ matrix.image }}/Dockerfile
- name: Build Docker Image
run: |
docker build -t "${{ matrix.image }}" -f "${{ matrix.image }}/Dockerfile" .