From d48a73671cad5dcb08a72704120d9ed99029f972 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= Date: Thu, 17 Jul 2025 11:09:41 +0200 Subject: [PATCH] Run `composer validate --strict` as part of the Static Analysis CI This will ensure that the `composer.json` is in sync with `composer.lock` and thus is related to php/pie#281 and php/pie#277. --- .github/workflows/continuous-integration.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 3ab4917e..6971a55a 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -99,6 +99,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: actions/checkout@v4 - uses: ramsey/composer-install@v3 + - name: Validate the composer configuration + run: composer validate --strict - name: Run Psalm run: vendor/bin/psalm