File tree 3 files changed +38
-16
lines changed
3 files changed +38
-16
lines changed Original file line number Diff line number Diff line change
1
+ name : Lint and run tests
2
+
3
+ description : Lints and runs tests on the codebase, used before builds and on every PR
4
+
5
+ runs :
6
+ using : composite
7
+ steps :
8
+ - name : Set up Go
9
+ uses : actions/setup-go@v3
10
+ with :
11
+ go-version : 1.23
12
+ - name : Lint the codebase
13
+ uses : golangci/golangci-lint-action@v3
14
+ with :
15
+ version : latest
16
+ args : -E goimports -E godot --timeout 10m
17
+ - name : Run tests
18
+ shell : bash
19
+ run : |
20
+ PICO_SECRET="danger" go test -v ./... -cover -race -coverprofile=coverage.out
21
+ go tool cover -func=coverage.out -o=coverage.out
Original file line number Diff line number Diff line change 7
7
- main
8
8
tags :
9
9
- v*
10
- pull_request :
11
- branches :
12
- - main
13
10
14
11
env :
15
12
REGISTRY : ghcr.io
@@ -21,21 +18,10 @@ jobs:
21
18
test :
22
19
runs-on : ubuntu-22.04
23
20
steps :
24
- - name : Set up Go
25
- uses : actions/setup-go@v3
26
- with :
27
- go-version : 1.23
28
21
- name : Checkout repo
29
22
uses : actions/checkout@v3
30
- - name : Lint the codebase
31
- uses : golangci/golangci-lint-action@v3
32
- with :
33
- version : latest
34
- args : -E goimports -E godot --timeout 10m
35
- - name : Run tests
36
- run : |
37
- PICO_SECRET="danger" go test -v ./... -cover -race -coverprofile=coverage.out
38
- go tool cover -func=coverage.out -o=coverage.out
23
+ - name : Run tests and lint
24
+ uses : ./.github/actions/test
39
25
build-main :
40
26
runs-on : ubuntu-22.04
41
27
needs : test
Original file line number Diff line number Diff line change
1
+ name : Test PRs
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - main
7
+
8
+ jobs :
9
+ test :
10
+ runs-on : ubuntu-22.04
11
+ steps :
12
+ - name : Checkout repo
13
+ uses : actions/checkout@v3
14
+ - name : Run tests and lint
15
+ uses : ./.github/actions/test
You can’t perform that action at this time.
0 commit comments