Skip to content

Commit

Permalink
lint.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
UtkarshUmre committed Mar 23, 2024
1 parent ab17e8b commit 1138e45
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: lint

on:
push:
branches:
- main
paths-ignore:
- "**.md"
pull_request:
branches:
- main
paths-ignore:
- "**.md"

permissions: read-all

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v4
with:
go-version: "1.20"

- name: lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.52.0

0 comments on commit 1138e45

Please sign in to comment.