mirror of
				https://github.com/1Password/onepassword-operator.git
				synced 2025-10-31 03:39:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			345 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			345 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Build
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches: [main]
 | |
|   pull_request:
 | |
| 
 | |
| jobs:
 | |
|   build:
 | |
|     name: Run on Ubuntu
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - name: Clone the code
 | |
|       uses: actions/checkout@v5
 | |
| 
 | |
|     - name: Setup Go
 | |
|       uses: actions/setup-go@v6
 | |
|       with:
 | |
|         go-version-file: go.mod
 | |
| 
 | |
|     - name: Build
 | |
|       run: go build -v ./...
 | 
