-
Notifications
You must be signed in to change notification settings - Fork 145
63 lines (51 loc) · 1.62 KB
/
test.yaml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Test
on: [push, pull_request]
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19.x
- name: Install Protoc
uses: arduino/setup-protoc@v2
- name: Installing protoc-gen-go
run: |
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
- name: Set up Nodejs
uses: actions/setup-node@v3
with:
node-version: 16
- name: Set up yarn
run: npm install --global yarn
- name: Check out code
uses: actions/checkout@v3
- name: Yarn install
run: yarn install
working-directory: ui
- name: Build web UI
run: yarn build
working-directory: ui
- name: Copy web assets
run: |
cp ui/dist/*.js ./internal/web/handlers/assets/
cp ui/dist/*.woff ./internal/web/handlers/assets/
cp ui/dist/*.woff2 ./internal/web/handlers/assets/
- name: Cache Go modules
uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build
run: |
mkdir ./bin && protoc -I=./ --go_out=./internal ./internal/proto/*.proto && go build -o ./bin/dagu .
- name: Test
run: |
go test -v -coverprofile="coverage.txt" -covermode=atomic ./...
- name: Upload coverage
uses: codecov/codecov-action@v2