You've already forked civ
							
							
		
			All checks were successful
		
		
	
	Lint Golang files / Run golang CI linter (stable, ubuntu-latest-amd64) (push) Successful in 20s
				
			Run Golang tests / Run unit tests (stable, ubuntu-latest-amd64) (push) Successful in 10s
				
			Lint Golang files / Run golang CI linter (stable, ubuntu-latest-amd64) (pull_request) Successful in 19s
				
			Lint Golang files / Run golang CI linter (stable, ubuntu-latest-arm64) (push) Successful in 55s
				
			Run Golang tests / Run unit tests (stable, ubuntu-latest-amd64) (pull_request) Successful in 9s
				
			Lint Markdown files / Run markdown linter (pull_request) Successful in 4s
				
			Run Golang tests / Run unit tests (stable, ubuntu-latest-arm64) (push) Successful in 34s
				
			Lint Golang files / Run golang CI linter (stable, ubuntu-latest-arm64) (pull_request) Successful in 57s
				
			Run Golang tests / Run unit tests (stable, ubuntu-latest-arm64) (pull_request) Successful in 32s
				
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			687 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			687 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: "Lint Golang files"
 | |
| 
 | |
| on:
 | |
|   pull_request:
 | |
|     types: [ "opened", "reopened", "synchronize" ]
 | |
|   push:
 | |
|     branches: [ '**' ]
 | |
|     tags-ignore: [ '**' ]
 | |
|   workflow_dispatch: {}
 | |
| 
 | |
| permissions:
 | |
|   contents: read
 | |
| 
 | |
| jobs:
 | |
|   golangci:
 | |
|     name: "Run golang CI linter"
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       matrix:
 | |
|         go: [ stable ]
 | |
|         os: [ ubuntu-latest-amd64, ubuntu-latest-arm64 ]
 | |
|     steps:
 | |
|     - uses: actions/checkout@v5.0.0
 | |
|     - uses: actions/setup-go@v6.0.0
 | |
|       with:
 | |
|         go-version: ${{ matrix.go }}
 | |
|     - uses: golangci/golangci-lint-action@v8.0.0
 | |
|       with:
 | |
|         version: v2.5.0 # renovate: datasource=github-releases depName=golangci/golangci-lint
 |