generated from brightbock/serverless-func-template
-
Notifications
You must be signed in to change notification settings - Fork 2
47 lines (36 loc) · 1 KB
/
go.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
job1:
name: Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Format Check
run: cd function && if [ $(gofmt -l -s . | grep -E -v '^vendor/' | tee /tmp/gofmt.txt
| wc -l) -ne 0 ]; then echo "fmt failed:"; cat /tmp/gofmt.txt ; exit 1;
fi
job2:
name: Functionality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Build
run: cd function && go build -v -tags lambda.norpc ./...
- name: Test
run: cd function && go test -v -tags lambda.norpc -covermode="count" -coverprofile="/tmp/coverage.out"
- name: Coverage Report
run: cd function && go tool cover -func="/tmp/coverage.out"