mirror of
				https://hub.gitmirror.com/https://github.com/gradle/gradle-build-action
				synced 2025-10-31 18:10:05 +08:00 
			
		
		
		
	 95e20daa83
			
		
	
	
		95e20daa83
		
	
	
	
	
		
			
			in a best effort manner by default allowing to specify files to hash for computing the cache key
		
			
				
	
	
		
			31 lines
		
	
	
		
			680 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			680 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
|  # make sure the action works on a clean machine without building
 | |
| name: prod
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - master
 | |
|       - 'releases/*'
 | |
| 
 | |
| jobs:
 | |
|   check:
 | |
|     strategy:
 | |
|       matrix:
 | |
|         os: [ubuntu-latest, macos-latest, windows-latest]
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v2
 | |
|     - name: Test wrapper
 | |
|       uses: ./
 | |
|       with:
 | |
|         wrapper-directory: __tests__/data/basic
 | |
|         build-root-directory: __tests__/data/basic
 | |
|         arguments: test
 | |
|     - name: Test dist download
 | |
|       uses: ./
 | |
|       with:
 | |
|         gradle-version: 6.5
 | |
|         build-root-directory: __tests__/data/basic
 | |
|         arguments: test
 |