From 5ab8514f67fc9d52f9de752669425ff579d6d8c8 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Sun, 10 Mar 2024 21:02:55 +0100 Subject: [PATCH] ci: add `composer validation` job --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ef7bde6..7aaf234a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,18 @@ permissions: contents: read jobs: + check-composer-validation: + name: Composer validation + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Composer Validate + uses: docker://composer:2.7.1 + with: + args: validate + check-cs: name: Coding Standards runs-on: ubuntu-latest