mirror of
				https://github.moeyy.xyz/https://github.com/docker/setup-compose-action.git
				synced 2025-10-31 18:02:07 +08:00 
			
		
		
		
	![dependabot[bot]](/assets/img/avatar_default.png) 35f07640c9
			
		
	
	
		35f07640c9
		
			
		
	
	
	
	
		
			
			Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			43 lines
		
	
	
		
			833 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			833 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: test
 | |
| 
 | |
| 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:
 | |
|   test:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       -
 | |
|         name: Checkout
 | |
|         uses: actions/checkout@v5
 | |
|       -
 | |
|         name: Set up Docker Buildx
 | |
|         uses: docker/setup-buildx-action@v3
 | |
|         with:
 | |
|           version: ${{ env.SETUP_BUILDX_VERSION }}
 | |
|           driver: docker
 | |
|       -
 | |
|         name: Test
 | |
|         uses: docker/bake-action@v6
 | |
|         with:
 | |
|           source: .
 | |
|           targets: test
 | |
|       -
 | |
|         name: Upload coverage
 | |
|         uses: codecov/codecov-action@v5
 | |
|         with:
 | |
|           files: ./coverage/clover.xml
 | |
|           token: ${{ secrets.CODECOV_TOKEN }}
 |