You've already forked drone-email
							
							
		
			Some checks failed
		
		
	
	Run Golang tests / Run unit tests (stable, ubuntu-latest-arm64) (pull_request) Successful in 21s
				
			Lint Golang files / Run golang CI linter (stable, ubuntu-latest-amd64) (push) Failing after 17s
				
			Lint Golang files / Run golang CI linter (stable, ubuntu-latest-amd64) (pull_request) Failing after 14s
				
			Run Golang tests / Run unit tests (stable, ubuntu-latest-amd64) (push) Successful in 15s
				
			Run Golang tests / Run unit tests (stable, ubuntu-latest-amd64) (pull_request) Successful in 7s
				
			Lint Markdown files / Run markdown linter (pull_request) Successful in 4s
				
			Lint Golang files / Run golang CI linter (stable, ubuntu-latest-arm64) (push) Failing after 43s
				
			Lint Golang files / Run golang CI linter (stable, ubuntu-latest-arm64) (pull_request) Failing after 40s
				
			Run Golang tests / Run unit tests (stable, ubuntu-latest-arm64) (push) Successful in 56s
				
			
		
			
				
	
	
		
			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.6.0 # renovate: datasource=github-releases depName=golangci/golangci-lint
 |