Docker-PHP/.github/workflows/lint.yml
Matthew Baggett dad44c8555
Feature/break up monolithic build (#5)
* Supress warning.

* Letsencrypt.

* Break up monolithic build.

* Bump flavours.

* Bump everything [skip ci]
2021-05-30 16:01:23 +02:00

26 lines
No EOL
580 B
YAML

name: Lint Docker Files
on:
schedule:
- cron: '0 4 * * TUE'
jobs:
lint:
name: Lint Docker Files
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
dockerfile:
- marshall/Dockerfile
- php/Dockerfile.Core
- php/Dockerfile.Flavours
- node/Dockerfile
- mariadb/Dockerfile
- redis/Dockerfile
- octoprint/Dockerfile
steps:
- uses: actions/checkout@master
- uses: brpaz/hadolint-action@master
with:
dockerfile: ${{ matrix.dockerfile }}