mirror of
				https://github.moeyy.xyz/https://github.com/docker/setup-compose-action.git
				synced 2025-10-27 19:14:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: validate
 | |
| 
 | |
| concurrency:
 | |
|   group: ${{ github.workflow }}-${{ github.ref }}
 | |
|   cancel-in-progress: true
 | |
| 
 | |
| on:
 | |
|   workflow_dispatch:
 | |
|   push:
 | |
|     branches:
 | |
|       - 'main'
 | |
|       - 'releases/v*'
 | |
|   pull_request:
 | |
| 
 | |
| env:
 | |
|   SETUP_BUILDX_VERSION: "edge"
 | |
| 
 | |
| jobs:
 | |
|   prepare:
 | |
|     runs-on: ubuntu-latest
 | |
|     outputs:
 | |
|       targets: ${{ steps.generate.outputs.targets }}
 | |
|     steps:
 | |
|       -
 | |
|         name: Checkout
 | |
|         uses: actions/checkout@v4
 | |
|       -
 | |
|         name: List targets
 | |
|         id: generate
 | |
|         uses: docker/bake-action/subaction/list-targets@v6
 | |
|         with:
 | |
|           target: validate
 | |
| 
 | |
|   validate:
 | |
|     runs-on: ubuntu-latest
 | |
|     needs:
 | |
|       - prepare
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         target: ${{ fromJson(needs.prepare.outputs.targets) }}
 | |
|     steps:
 | |
|       -
 | |
|         name: Set up Docker Buildx
 | |
|         uses: docker/setup-buildx-action@v3
 | |
|         with:
 | |
|           version: ${{ env.SETUP_BUILDX_VERSION }}
 | |
|           driver: docker
 | |
|       -
 | |
|         name: Validate
 | |
|         uses: docker/bake-action@v6
 | |
|         with:
 | |
|           targets: ${{ matrix.target }}
 | 
