We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 544ec74 commit ff8269bCopy full SHA for ff8269b
.github/workflows/go.yml
@@ -7,6 +7,11 @@ on:
7
branches: [ master ]
8
workflow_dispatch:
9
10
+permissions:
11
+ contents: read
12
+ pull-requests: read
13
+ checks: write
14
+
15
jobs:
16
build-lint-test:
17
name: Build Lint and Test
@@ -17,14 +22,14 @@ jobs:
22
uses: actions/setup-go@v5
18
23
with:
19
24
go-version: '1.17'
20
- - name: Build
21
- run: make build
- - name: Linting
- run: make check
25
- name: Set up gotestfmt
26
uses: GoTestTools/gotestfmt-action@v2
27
28
repo: gotestfmt
- version: v2.2.0
29
+ version: v2.5.0
30
+ - name: Build
31
+ run: make build
32
- name: Unit Tests
33
run: make test
34
+ - uses: golangci/golangci-lint-action@v6
35
+ name: Linting
0 commit comments