Skip to content

Create dependabot.yml #60

Create dependabot.yml

Create dependabot.yml #60

Workflow file for this run

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@v3
- name: Lint Image
uses: hadolint/hadolint-action@v3.0.0
with:
dockerfile: ${{ matrix.image }}/Dockerfile
- name: Build Docker Image
run: |
docker build -t "${{ matrix.image }}" -f "${{ matrix.image }}/Dockerfile" .