Skip to content

Commit

Permalink
chore: debug workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed May 29, 2024
1 parent ed7bbc7 commit 9d77cdc
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,17 +120,30 @@ jobs:
working-directory: app
dependencies: ${{ matrix.dependencies }}

- name: ⚙️ Install dependencies with phive
env:
PHIVE_HOME: .phive
working-directory: app
run: phive install --trust-gpg-keys 0xC00543248C87FB13,0x033E5F8D801A2F8D,0x47436587D82C4A39
shell: bash

- 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/[email protected]
with:
phive-home: '${{ github.workspace }}/app/.phive'
trust-gpg-keys: '0xC00543248C87FB13,0x033E5F8D801A2F8D,0x47436587D82C4A39'
# - name: 📥 Install dependencies with phive
# uses: wayofdev/gh-actions/actions/phive/[email protected]
# with:
# phive-home: ${{ github.workspace }}/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
Expand Down

0 comments on commit 9d77cdc

Please sign in to comment.