Merge pull request 'can provide own image' (#7) from feature/image into main

Reviewed-on: #7
This commit is contained in:
Jamie Schouten 2025-03-05 16:40:14 +00:00
commit 74bc98d49d

View File

@ -1,6 +1,10 @@
on:
workflow_call:
inputs:
image:
required: false
type: string
default: git.qlic.nl/qlic/quality:latest
username:
required: false
type: string
@ -22,7 +26,7 @@ jobs:
quality:
runs-on: ubuntu-24.04
container:
image: git.qlic.nl/qlic/quality:latest
image: ${{ inputs.image }}
credentials:
username: ${{ inputs.username }}
password: ${{ inputs.password }}
@ -55,6 +59,6 @@ jobs:
- name: Run php cs fixer
run: ./vendor/bin/php-cs-fixer fix --diff --dry-run
- name: Run audit
run: composer audit