We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdc4f15 commit 49e0171Copy full SHA for 49e0171
.github/workflows/golangci-lint.yaml renamed to .github/workflows/golangci.yaml
@@ -6,21 +6,36 @@ on:
6
branches:
7
- master
8
- "/^v\\d+\\.\\d+(\\.\\d+)?(-\\S*)?$/"
9
+ paths-ignore:
10
+ - "**/*.md"
11
12
permissions:
13
contents: read
14
pull-requests: read
15
16
jobs:
- golangci:
17
+ lint:
18
name: lint
19
runs-on: ubuntu-latest
20
steps:
21
- uses: actions/checkout@v4
22
- uses: actions/setup-go@v5
23
with:
24
go-version-file: go.mod
25
+
26
- name: golangci-lint
27
uses: golangci/golangci-lint-action@v6
28
29
version: v1.59
30
31
+ coverage:
32
+ name: coverage
33
+ runs-on: ubuntu-latest
34
+ steps:
35
+ - uses: actions/checkout@v4
36
+ - uses: actions/setup-go@v5
37
+ with:
38
+ go-version-file: go.mod
39
40
+ - name: Unit tests and coverage
41
+ run: make cov
0 commit comments