From 7e205520fbfcaf90fbdd075b8275f7763224ae8e Mon Sep 17 00:00:00 2001 From: USAMI Kenta Date: Fri, 3 May 2024 15:47:40 +0900 Subject: [PATCH] CI: Remove composer.lock with incompatible PHP versions --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 617e24e..c663f45 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,9 @@ jobs: fail-fast: false matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }} steps: + - name: Remove composer.lock + if: matix.job.php > "8.2" + run: rm composer.lock - name: ${{ matrix.name }} uses: laminas/laminas-continuous-integration-action@v1 with: