mirror of
				https://github.com/mik3y/usb-serial-for-android
				synced 2025-10-31 18:37:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			310 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			310 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: build
 | |
| 
 | |
| on: [push]
 | |
| 
 | |
| jobs:
 | |
|   build:
 | |
| 
 | |
|     runs-on: ubuntu-latest
 | |
| 
 | |
|     steps:
 | |
|     - uses: actions/checkout@v2
 | |
|     - name: set up JDK 1.17
 | |
|       uses: actions/setup-java@v2
 | |
|       with:
 | |
|         distribution: 'temurin'
 | |
|         java-version: '17'
 | |
|     - name: Build with Gradle
 | |
|       run: ./gradlew assembleDebug
 |