Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/reusable-CI-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- php-version: '8.2'
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

# @TODO Figure out if coverage for every version is actually useful or not
# - name: Enable coverage
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
name: Static analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup PHP 8.2
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
Expand Down
48 changes: 0 additions & 48 deletions .github/workflows/reusable-coverage-upload-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,51 +65,3 @@ jobs:
force-gh-pr: ${{ needs.fetch-info.outputs.pull-request }}
force-uploader-build: ${{ needs.fetch-info.outputs.run-id }}
force-uploader-build-url: ${{ needs.fetch-info.outputs.run-url }}

debug-context:
name: DEBUG - context
runs-on: ubuntu-latest
steps:
- run: |
echo '{'
echo '"github.action": ${{ toJson(github.action) }},'
echo '"github.action_path": ${{ toJson(github.action_path) }},'
echo '"github.action_ref": ${{ toJson(github.action_ref) }},'
echo '"github.action_repository": ${{ toJson(github.action_repository) }},'
echo '"github.action_status": ${{ toJson(github.action_status) }},'
echo '"github.actor": ${{ toJson(github.actor) }},'
echo '"github.actor_id": ${{ toJson(github.actor_id) }},'
echo '"github.base_ref": ${{ toJson(github.base_ref) }},'
echo '"github.event": ${{ toJson(github.event) }},'
echo '"github.event_name": ${{ toJson(github.event_name) }},'
echo '"github.event_path": ${{ toJson(github.event_path) }},'
echo '"github.head_ref": ${{ toJson(github.head_ref) }},'
echo '"github.job": ${{ toJson(github.job) }},'
echo '"github.path": ${{ toJson(github.path) }},'
echo '"github.ref": ${{ toJson(github.ref) }},'
echo '"github.ref_name": ${{ toJson(github.ref_name) }},'
echo '"github.ref_protected": ${{ toJson(github.ref_protected) }},'
echo '"github.ref_type": ${{ toJson(github.ref_type) }},'
echo '"github.repository": ${{ toJson(github.repository) }},'
echo '"github.repository_id": ${{ toJson(github.repository_id) }},'
echo '"github.repository_owner": ${{ toJson(github.repository_owner) }},'
echo '"github.repository_owner_id": ${{ toJson(github.repository_owner_id) }},'
echo '"github.repositoryUrl": ${{ toJson(github.repositoryUrl) }},'
echo '"github.run_id": ${{ toJson(github.run_id) }},'
echo '"github.run_number": ${{ toJson(github.run_number) }},'
echo '"github.run_attempt": ${{ toJson(github.run_attempt) }},'
echo '"github.sha": ${{ toJson(github.sha) }},'
echo '"github.triggering_actor": ${{ toJson(github.triggering_actor) }},'
echo '"github.workflow": ${{ toJson(github.workflow) }},'
echo '"github.workflow_ref": ${{ toJson(github.workflow_ref) }},'
echo '"github.workflow_sha": ${{ toJson(github.workflow_sha) }},'
echo '"github.workspace": ${{ toJson(github.workspace) }}'
echo '}'

debug-uploads:
name: DEBUG - Uploaders
runs-on: ubuntu-latest
needs: [ codacy-uploader, codecov-uploader ]
steps:
- run: echo 'codecov='"'"'${{ toJson(needs.codecov-uploader) }}'"'"
- run: echo 'codacy='"'"'${{ toJson(needs.codacy-uploader) }}'"'"