-
-
Notifications
You must be signed in to change notification settings - Fork 12
43 lines (38 loc) · 979 Bytes
/
test.yml
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
40
41
42
43
name: Build
on: [pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
image:
- horus-stable
- horus-unstable
- odin-stable
- odin-unstable
- juno-stable
- juno-stable-installer
- juno-unstable
- juno-unstable-installer
- loki-stable
- loki-unstable
- next-unstable
- stable
- stable-installer
- ubuntu-lunar-unstable
- ubuntu-mantic-unstable
- unstable
- unstable-installer
- latest
name: ${{ matrix.image }}
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
- name: Lint Image
uses: hadolint/[email protected]
with:
dockerfile: ${{ matrix.image }}/Dockerfile
- name: Build Docker Image
run: |
docker build -t "${{ matrix.image }}" -f "${{ matrix.image }}/Dockerfile" .