mirror of
				https://github.com/go-micro/go-micro.git
				synced 2025-10-30 23:27:41 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			515 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			515 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: PR Sanity Check
 | |
| on: pull_request
 | |
| 
 | |
| jobs:
 | |
| 
 | |
|   prtest:
 | |
|     name: PR sanity check
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
| 
 | |
|     - name: Set up Go 1.13
 | |
|       uses: actions/setup-go@v1
 | |
|       with:
 | |
|         go-version: 1.13
 | |
|       id: go
 | |
| 
 | |
|     - name: Check out code into the Go module directory
 | |
|       uses: actions/checkout@v2
 | |
| 
 | |
|     - name: Get dependencies
 | |
|       run: |
 | |
|         ./.travis/deps.sh
 | |
| 
 | |
|     - name: Run tests
 | |
|       id: tests
 | |
|       env:
 | |
|         TRAVIS: yes
 | |
|         IN_TRAVIS_CI: yes
 | |
|       run: ./.travis/tests.sh
 |