From ee3a51b7c4c42bb74ac428fa397542dd05b78b3d Mon Sep 17 00:00:00 2001 From: lotyp Date: Wed, 29 May 2024 21:55:30 +0300 Subject: [PATCH] chore: debug workflow --- .github/workflows/coding-standards.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index cc2a998f..d74894d9 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -121,16 +121,21 @@ jobs: dependencies: ${{ matrix.dependencies }} - name: Debug - run: echo ${{ github.workspace }} + run: | + echo ${{ github.workspace }} + ls ${GITHUB_WORKSPACE}/app/.phive + ls ${{ github.workspace }}/app/.phive + cat ${{ github.workspace }}/app/.phive/phars.xml - name: 📥 Install dependencies with phive uses: wayofdev/gh-actions/actions/phive/install@v3.1.0 with: - phive-home: '${{ github.workspace }}/app/.phive' + phive-home: app/.phive trust-gpg-keys: '0xC00543248C87FB13,0x033E5F8D801A2F8D,0x47436587D82C4A39' - name: 🔍 Run ergebnis/composer-normalize - run: app/.phive/composer-normalize --ansi --dry-run + working-directory: app + run: .phive/composer-normalize --ansi --dry-run coding-standards: timeout-minutes: 4