mirror of
				https://github.com/actions/checkout.git
				synced 2025-10-31 18:18:37 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			285 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			285 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Build and Test
 | |
| 
 | |
| on:
 | |
|   pull_request:
 | |
|   push:
 | |
|     branches:
 | |
|       - master
 | |
|       - releases/*
 | |
| 
 | |
| jobs:
 | |
|   test:
 | |
|     runs-on: ubuntu-latest
 | |
| 
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@v2-beta
 | |
|         with:
 | |
|           ref: refs/pull/${{ github.event.number }}/head
 | 
