adding codeowners

This commit is contained in:
aparna-ravindra
2022-06-09 12:18:40 +05:30
parent 0c5e5e9835
commit 3dc1441d7f
3 changed files with 55 additions and 0 deletions

21
.github/workflows/lint.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: golangci-lint
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.16
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3