This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2022-03-31 09:49:42 +00:00
|
|
|
name: Dockerfile Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2022-03-31 10:33:54 +00:00
|
|
|
- master
|
2022-03-31 09:49:42 +00:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
hadolint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
dockerfile:
|
|
|
|
- docker/sia/Dockerfile
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: hadolint/hadolint-action@v2.0.0
|
|
|
|
with:
|
|
|
|
dockerfile: ${{ matrix.dockerfile }}
|