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 2708c96 commit 4afe4a0Copy full SHA for 4afe4a0
.github/workflows/tests.yml
@@ -6,8 +6,22 @@ on:
6
- master
7
8
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
21
+ version: latest
22
+
23
tests:
- environment: tests
24
+ environment: test check
25
runs-on: ubuntu-latest
26
steps:
27
- name: Install Go
@@ -23,8 +37,5 @@ jobs:
37
- name: Install dependencies
38
run: go mod download -x
39
- - name: Run lint
- run: make lint
28
-
29
40
- name: Run Tests
30
41
run: make test
0 commit comments