-
Notifications
You must be signed in to change notification settings - Fork 413
75 lines (62 loc) · 1.53 KB
/
main.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
name: CI
'on':
- push
- pull_request
env:
GOPROXY: https://proxy.golang.org
GOPATH: ${{ github.workspace }}/go
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up go
uses: actions/setup-go@v5
with:
go-version: '1.20.6'
- uses: actions/checkout@v4
with:
path: git-sync
- name: make all-build
working-directory: git-sync
run: |
make all-build
test:
runs-on: ubuntu-latest
steps:
- name: Set up go
uses: actions/setup-go@v5
with:
go-version: '1.20.6'
- uses: actions/checkout@v4
with:
path: git-sync
- name: make test
working-directory: git-sync
run: |
make test
lint:
runs-on: ubuntu-latest
steps:
- name: Set up go
uses: actions/setup-go@v5
with:
go-version: '1.20.6'
- uses: actions/checkout@v4
with:
path: git-sync
# We run the github action, even though this is duplicated in `make lint` below.
# This is because the action gives easier-to-read output than the linter.
# There is a risk of drift between the two, but this is only linting,
# not runtime correctness!
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
working-directory: git-sync
version: v1.53.3
- name: make lint
working-directory: git-sync
run: |
make lint