Skip to content

Commit 9026733

Browse files
ci: create dedicated golangci-lint workflow
1 parent 63f8f47 commit 9026733

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/golangci-lint.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
3+
name: Lint
4+
5+
on:
6+
workflow_dispatch: {}
7+
pull_request: {}
8+
9+
jobs:
10+
golangci-lint:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15+
16+
- name: Setup mise
17+
18+
19+
- name: Run golangci-lint
20+
run: golangci-lint run

0 commit comments

Comments
 (0)