mirror of
				https://github.com/actions/checkout.git
				synced 2025-10-31 10:08:37 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			322 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			322 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: "test-local"
 | |
| on:
 | |
|   pull_request:
 | |
|   push:
 | |
|     branches:
 | |
|       - master
 | |
|       - 'releases/*'
 | |
| 
 | |
| jobs:
 | |
|   test:
 | |
|     strategy:
 | |
|       matrix:
 | |
|         os: [windows-latest, ubuntu-latest, macOS-latest]
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     steps:
 | |
|     - uses: actions/checkout@master
 | |
|     - uses: ./
 | |
|       with:
 | |
|         ref: master
 | 
