Compare commits
	
		
			5 Commits
		
	
	
		
			feature/co
			...
			feature/ad
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 3373bf4518 | |||
| ff2e5816b0 | |||
| ce508a66d5 | |||
| 74bc98d49d | |||
| d459669371 | 
| @@ -1,6 +1,10 @@ | |||||||
| on: | on: | ||||||
|   workflow_call: |   workflow_call: | ||||||
|     inputs: |     inputs: | ||||||
|  |       image: | ||||||
|  |         required: false | ||||||
|  |         type: string | ||||||
|  |         default: git.qlic.nl/qlic/quality:php8.3 | ||||||
|       username: |       username: | ||||||
|         required: false |         required: false | ||||||
|         type: string |         type: string | ||||||
| @@ -17,12 +21,16 @@ on: | |||||||
|         required: false |         required: false | ||||||
|         type: string |         type: string | ||||||
|         default: .env.example |         default: .env.example | ||||||
|  |     secrets: | ||||||
|  |       composer-auth-json: | ||||||
|  |         required: false | ||||||
|  |         type: string | ||||||
|  |  | ||||||
| jobs: | jobs: | ||||||
|   quality: |   quality: | ||||||
|     runs-on: ubuntu-24.04 |     runs-on: 'ubuntu-24.04' | ||||||
|     container: |     container: | ||||||
|       image: git.qlic.nl/qlic/quality:latest |       image: ${{ inputs.image }} | ||||||
|       credentials: |       credentials: | ||||||
|         username: ${{ inputs.username }} |         username: ${{ inputs.username }} | ||||||
|         password: ${{ inputs.password }} |         password: ${{ inputs.password }} | ||||||
| @@ -31,6 +39,8 @@ jobs: | |||||||
|         uses: https://git.qlic.nl/actions/setup-composer@v1 |         uses: https://git.qlic.nl/actions/setup-composer@v1 | ||||||
|         with: |         with: | ||||||
|           args: ${{ inputs.composer-args }} |           args: ${{ inputs.composer-args }} | ||||||
|  |         env: | ||||||
|  |           COMPOSER_AUTH: ${{ secrets.composer-auth-json }} | ||||||
|  |  | ||||||
|       - name: Cache PHPStan |       - name: Cache PHPStan | ||||||
|         uses: actions/cache@v4 |         uses: actions/cache@v4 | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user