mirror of
				https://hub.gitmirror.com/https://github.com/gradle/gradle-build-action
				synced 2025-10-31 10:00:07 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			422 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			422 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
|  # make sure the action works on a clean machine without building
 | |
| name: prod
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - master
 | |
|       - 'releases/*'
 | |
| 
 | |
| jobs:
 | |
|   check:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - name: Checkout sources
 | |
|       uses: actions/checkout@v2
 | |
|     - name: Test
 | |
|       uses: ./
 | |
|       with:
 | |
|         wrapper-directory: __tests__/data/basic
 | |
|         build-root-directory: __tests__/data/basic
 | |
|         arguments: help
 | 
