mirror of
				https://github.com/ClusterCockpit/cc-backend
				synced 2025-10-31 16:05:06 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			379 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			379 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Build & Test
 | |
| on: [push, pull_request]
 | |
| jobs:
 | |
|   test:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|       - name: Install Go
 | |
|         uses: actions/setup-go@v4
 | |
|         with:
 | |
|           go-version: 1.25.x
 | |
|       - name: Checkout code
 | |
|         uses: actions/checkout@v3
 | |
|       - name: Build, Vet & Test
 | |
|         run: |
 | |
|           go build ./...
 | |
|           go vet ./...
 | |
|           go test ./...
 |