-
Notifications
You must be signed in to change notification settings - Fork 24
48 lines (39 loc) · 1 KB
/
ci-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
47
48
name: ci-go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
go-fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
- uses: actions/setup-go@v5
with:
go-version-file: './relay-server/go.mod'
- name: Check gofmt
run: gofmt -s -d $(find . -type f -name '*.go' -print)
working-directory: relay-server
go-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
- name: Run Revive Action by pulling pre-built image
uses: morphy2k/revive-action@v2
with:
path: "./relay-server/..."
go-sec:
runs-on: ubuntu-latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
- uses: actions/setup-go@v5
with:
go-version-file: './relay-server/go.mod'
- name: Run Gosec Security Scanner
run: |
make gosec
working-directory: relay-server