Skip to content

Add missing copyright notice to new files #54

Add missing copyright notice to new files

Add missing copyright notice to new files #54

Workflow file for this run

---
name: 'Lint'
on:
push:
paths-ignore:
- '.editorconfig'
- '.gitignore'
- '.golangci.toml'
- 'CONTRIBUTING.md'
- 'LICENSE-3rdparty.csv'
- 'LICENSE.md'
- 'NOTICE'
- 'README.md'
- 'SUPPORT.md'
pull_request:
paths-ignore:
- '.editorconfig'
- '.gitignore'
- '.golangci.toml'
- 'CONTRIBUTING.md'
- 'LICENSE-3rdparty.csv'
- 'LICENSE.md'
- 'NOTICE'
- 'README.md'
- 'SUPPORT.md'
permissions:
contents: 'read'
jobs:
go:
name: 'Lint Go files'
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v4'
- name: 'Setup Go environment'
uses: 'actions/setup-go@v4'
with:
go-version: '1.21.x'
- name: 'Run govulncheck'
run: 'make vulnerabilities'
- name: 'Run gofumpt'
run: 'make fmt'
- name: 'Run golangci-lint'
run: 'make lint'