mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 03:21:13 +00:00
d9f48505fe
And clean up some of the whitespace formatting so that the "name" and "on" are grouped away from the "jobs". Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
26 lines
527 B
YAML
26 lines
527 B
YAML
name: Lint Dockerfile
|
|
on:
|
|
push:
|
|
paths:
|
|
- resources/Dockerfile
|
|
pull_request:
|
|
paths:
|
|
- resources/Dockerfile
|
|
|
|
jobs:
|
|
hadolint:
|
|
name: Run Hadolint Dockerfile Linter
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Lint Dockerfile
|
|
uses: hadolint/hadolint-action@master
|
|
with:
|
|
dockerfile: ./resources/Dockerfile
|
|
format: tty
|
|
no-fail: false
|
|
verbose: true
|
|
failure-threshold: info
|