-
-
Notifications
You must be signed in to change notification settings - Fork 12
45 lines (35 loc) · 879 Bytes
/
ci.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
name: build
on:
push:
branches:
- main
pull_request:
jobs:
job-test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run lint
uses: reviewdog/action-golangci-lint@v2
- name: Setup
run: |
sudo apt-get update
sudo apt-get install graphviz
- name: Get branch
id: get_branch
run: echo ::set-output name=GITHUB_BRANCH::${GITHUB_REF/refs\/heads\//}
- name: Test
run: make ci
- name: Update ndiag documents
run: make ci_doc
- uses: EndBug/add-and-commit@v7
with:
add: 'docs/ example/'
- name: Run octocov
uses: k1LoW/octocov-action@v0