Skip to content

Commit 4afe4a0

Browse files
committed
fix: upd GA linter check
1 parent 2708c96 commit 4afe4a0

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/workflows/tests.yml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,22 @@ on:
66
- master
77

88
jobs:
9+
lint:
10+
name: lint check
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-go@v5
15+
with:
16+
go-version: 1.21
17+
cache: false
18+
- name: golangci-lint
19+
uses: golangci/golangci-lint-action@v4
20+
with:
21+
version: latest
22+
923
tests:
10-
environment: tests
24+
environment: test check
1125
runs-on: ubuntu-latest
1226
steps:
1327
- name: Install Go
@@ -23,8 +37,5 @@ jobs:
2337
- name: Install dependencies
2438
run: go mod download -x
2539

26-
- name: Run lint
27-
run: make lint
28-
2940
- name: Run Tests
3041
run: make test

0 commit comments

Comments
 (0)