From 74ed247a2eec7dcb2498546984ea40600d8dd207 Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Sat, 15 Aug 2020 18:49:36 +0200 Subject: [PATCH] Field lint jobs into one job --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 151e59f8..5b44ecbb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,20 +68,19 @@ jobs: ALPINE: ${{ needs.generate-alpine-strategy.outputs.alpine }} PHP: ${{ needs.generate-php-strategy.outputs.php }} lint: + name: Lint Dockerfiles runs-on: ubuntu-latest needs: - generate-type-strategy strategy: fail-fast: false - matrix: - type: ${{ fromJson(needs.generate-type-strategy.outputs.type) }} steps: - uses: actions/checkout@v2 - name: Lint ${{ matrix.type }} uses: docker://hadolint/hadolint:latest-debian with: entrypoint: hadolint - args: Dockerfile-${{ matrix.type }} + args: Dockerfile-* build: needs: - lint